Skip to content

Commit

Permalink
Fix some bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
ThisTestUser committed Oct 9, 2017
1 parent 6cdebbb commit f1a30e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/io/github/thistestuser/DeobfuscatorFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,7 @@ private void loadTransformers(String path, JLabel displayLabel)
{
if(loader != null)
loader.close();
loader = URLClassLoader.newInstance(new URL[]{new File(path).toURI().toURL()}, DeobfuscatorFrame.class.getClassLoader());
loader = URLClassLoader.newInstance(new URL[]{new File(path).toURI().toURL()});
transformerClasses.clear();
transformerList.clear();
DEOBFUSCATOR_VERSION = DeobfuscatorVersion.LEGACY;
Expand Down

0 comments on commit f1a30e4

Please sign in to comment.