Skip to content

Commit

Permalink
[101] Fix refresh issue in Model Explorer
Browse files Browse the repository at this point in the history
Bug: #101
Signed-off-by: Pierre-Charles David <pierre-charles.david@obeo.fr>
  • Loading branch information
pcdavid committed Oct 28, 2023
1 parent 34b6bd7 commit 0c9335f
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1066,11 +1066,7 @@ public boolean apply(Notification notification) {
}

private boolean isSemanticChange(Resource resource) {
boolean result = false;
if (resource != null) {
allSemanticResources.contains(resource);
}
return result;
return resource != null && allSemanticResources.contains(resource);
}

}
Expand Down

0 comments on commit 0c9335f

Please sign in to comment.