Skip to content

Commit f1a30e4

Browse files
committed
Fix some bugs
1 parent 6cdebbb commit f1a30e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/io/github/thistestuser/DeobfuscatorFrame.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,7 @@ private void loadTransformers(String path, JLabel displayLabel)
724724
{
725725
if(loader != null)
726726
loader.close();
727-
loader = URLClassLoader.newInstance(new URL[]{new File(path).toURI().toURL()}, DeobfuscatorFrame.class.getClassLoader());
727+
loader = URLClassLoader.newInstance(new URL[]{new File(path).toURI().toURL()});
728728
transformerClasses.clear();
729729
transformerList.clear();
730730
DEOBFUSCATOR_VERSION = DeobfuscatorVersion.LEGACY;

0 commit comments

Comments
 (0)