Skip to content

Commit

Permalink
Merge pull request #6063 from pkriens/issue/npe-in-jarfilesystem
Browse files Browse the repository at this point in the history
Still had NPEs in the null file system
  • Loading branch information
pkriens authored Mar 21, 2024
2 parents 038de3c + a97faeb commit 7d2f29d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,6 @@ static Result<InputStream> openInputStream(URI uri, String path, IProgressMonito

static IFileStore nullFileStore(IPath path) {
return EFS.getNullFileSystem()
.getStore(path);
.getStore(path.makeAbsolute());
}
}

0 comments on commit 7d2f29d

Please sign in to comment.