Remove temporary debugging line

This commit is contained in:
Johannes Frohnmeyer 2022-06-05 17:17:51 +02:00
parent 11679ceb75
commit 85d7a6a90f
Signed by: Johannes
GPG Key ID: E76429612C2929F4
1 changed files with 1 additions and 6 deletions

View File

@ -17,11 +17,6 @@ public interface ModSource {
String getFileName();
boolean equals(ModSource other);
default Path getJarPath() {
try {
return MetaHolder.LIBRARIES_DIR.resolve("com").resolve(getName()).resolve(getFileName());
} catch (NullPointerException npe) {
System.identityHashCode(this);
throw npe;
}
return MetaHolder.LIBRARIES_DIR.resolve("com").resolve(getName()).resolve(getFileName());
}
}