Skip to content

Commit

Permalink
Fix ArrayIndexOutOfBoundsException
Browse files Browse the repository at this point in the history
  • Loading branch information
AlpyneDreams committed Jul 21, 2020
1 parent a76af67 commit be69117
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void run(String... args) throws Exception {
ProgressListener progress = new ConsoleProgressListener();

EnigmaProject.JarExport jar = project.exportRemappedJar(progress);
EnigmaProject.SourceExport source = jar.decompile(progress, decompilerService);
EnigmaProject.SourceExport source = jar.decompile(progress, decompilerService, EnigmaProject.DecompileErrorStrategy.TRACE_AS_SOURCE);

source.write(fileJarOut, progress);
}
Expand Down

0 comments on commit be69117

Please sign in to comment.