Skip to content
This repository has been archived by the owner on Feb 25, 2023. It is now read-only.

Commit

Permalink
Fixed: Unresolved symbol in JavacFileManager
Browse files Browse the repository at this point in the history
  • Loading branch information
itsaky committed Oct 7, 2022
1 parent 7ecda42 commit ffa1f64
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ synchronized Container getContainer(Path path) throws IOException {
return fs;
}

if (fsInfo.isFile(path) && path.equals(Locations.thisSystemModules)) {
if (fsInfo.isFile(path) && path.equals(Locations.thisSystemModules())) {
containers.put(path, fs = new JRTImageContainer());
return fs;
}
Expand Down

0 comments on commit ffa1f64

Please sign in to comment.