Skip to content

Commit

Permalink
added default implementation for new method in IResource (since Eclip…
Browse files Browse the repository at this point in the history
…se 3.8)
  • Loading branch information
Martin Lippert committed Apr 25, 2012
1 parent 82303f8 commit dc83a9a
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,10 @@ public void accept(IResourceVisitor visitor, int depth, boolean includePhantoms)
// no-op
}

public void accept(IResourceProxyVisitor visitor, int depth, int memberFlags) throws CoreException {
// no-op
}

public void accept(IResourceVisitor visitor, int depth, int memberFlags) throws CoreException {
// no-op
}
Expand Down Expand Up @@ -614,4 +618,5 @@ public IPathVariableManager getPathVariableManager() {
public boolean isFiltered() {
return false;
}

}

0 comments on commit dc83a9a

Please sign in to comment.