Skip to content

Commit

Permalink
Fix for #867: eclipse bug 545293, et al.
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-milles committed Apr 5, 2019
1 parent 7eaf200 commit 2c8288f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -360,12 +360,12 @@ public void cleanup() {

@Override
public boolean hasModule() {
return this.modPathString != null;
return (this.fs != null ? this.modPathString != null : super.hasModule());
}

@Override
protected String getKey() {
return this.modPathString;
return (this.fs != null ? this.modPathString : super.getKey());
}

@Override
Expand Down

0 comments on commit 2c8288f

Please sign in to comment.