Skip to content

Commit

Permalink
Added Generic Paramters for getModelSource and TargetConnectins #155
Browse files Browse the repository at this point in the history
  • Loading branch information
azoitl authored and ptziegler committed Dec 23, 2024
1 parent 405c1e4 commit 0bd5f17
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -498,8 +498,8 @@ protected IFigure getLayer(Object layer) {
* @return the List of model source connections
*/
@SuppressWarnings("static-method")
protected List getModelSourceConnections() {
return Collections.EMPTY_LIST;
protected List<?> getModelSourceConnections() {
return Collections.emptyList();
}

/**
Expand All @@ -514,8 +514,8 @@ protected List getModelSourceConnections() {
* @return the List of model target connections
*/
@SuppressWarnings("static-method")
protected List getModelTargetConnections() {
return Collections.EMPTY_LIST;
protected List<?> getModelTargetConnections() {
return Collections.emptyList();
}

/**
Expand Down

0 comments on commit 0bd5f17

Please sign in to comment.