Skip to content

Commit

Permalink
Remove unused method
Browse files Browse the repository at this point in the history
  • Loading branch information
LunNova committed Jan 22, 2017
1 parent 5f74fdf commit aa47e46
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/main/java/me/nallar/modpatcher/LaunchClassLoaderUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -142,15 +142,6 @@ private static Set<String> getTransformerExceptions() {
}
}

public static boolean excluded(String name) {
for (final String exception : getClassLoaderExceptions()) {
if (name.startsWith(exception)) {
return true;
}
}
return false;
}

public static boolean allowedForSrg(String name) {
if (name.startsWith("javax.") || name.startsWith("java."))
return false;
Expand Down

0 comments on commit aa47e46

Please sign in to comment.