Skip to content

Commit

Permalink
Handle missing classpath entries when source remapping.
Browse files Browse the repository at this point in the history
  • Loading branch information
modmuss50 committed May 21, 2022
1 parent 86d74b7 commit 1956c03
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,9 @@ private Mercury createMercury() {
}

for (File file : classpath.getFiles()) {
mercury.getClassPath().add(file.toPath());
if (file.exists()) {
mercury.getClassPath().add(file.toPath());
}
}

return mercury;
Expand Down

0 comments on commit 1956c03

Please sign in to comment.