Skip to content

Commit

Permalink
Merge pull request #356 from laeubi/issue_355
Browse files Browse the repository at this point in the history
Fix isse #355
  • Loading branch information
laeubi authored Apr 15, 2019
2 parents c781042 + ad3d356 commit 0d144e1
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
public class ResourceHelper {

public IResource find(String path) {
if (path == null) {
return null;
}
IWorkspaceRoot root = ResourcesPlugin.getWorkspace().getRoot();
return root.findMember(path);
}
Expand Down

0 comments on commit 0d144e1

Please sign in to comment.