summaryrefslogtreecommitdiff
path: root/enigma-cli/src/main/java
diff options
context:
space:
mode:
authorGravatar Joe2025-09-10 20:26:11 +0100
committerGravatar modmuss2025-09-13 09:14:23 +0100
commit79ab43c66f9b40d9f6780f14b8d423a489e77c5c (patch)
tree73b1ef41b099ea468703898ea74131d5b2713d5a /enigma-cli/src/main/java
parentAdd more utility methods (diff)
downloadenigma-fork-79ab43c66f9b40d9f6780f14b8d423a489e77c5c.tar.gz
enigma-fork-79ab43c66f9b40d9f6780f14b8d423a489e77c5c.tar.xz
enigma-fork-79ab43c66f9b40d9f6780f14b8d423a489e77c5c.zip
Add a way to transform the decompiler input
Diffstat (limited to 'enigma-cli/src/main/java')
-rw-r--r--enigma-cli/src/main/java/cuchaz/enigma/command/DecompileCommand.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/enigma-cli/src/main/java/cuchaz/enigma/command/DecompileCommand.java b/enigma-cli/src/main/java/cuchaz/enigma/command/DecompileCommand.java
index 020bd97..baed29a 100644
--- a/enigma-cli/src/main/java/cuchaz/enigma/command/DecompileCommand.java
+++ b/enigma-cli/src/main/java/cuchaz/enigma/command/DecompileCommand.java
@@ -47,7 +47,7 @@ public class DecompileCommand extends Command {
47 ProgressListener progress = new ConsoleProgressListener(); 47 ProgressListener progress = new ConsoleProgressListener();
48 48
49 EnigmaProject.JarExport jar = project.exportRemappedJar(progress); 49 EnigmaProject.JarExport jar = project.exportRemappedJar(progress);
50 EnigmaProject.SourceExport source = jar.decompile(progress, decompilerService, DecompileErrorStrategy.TRACE_AS_SOURCE); 50 EnigmaProject.SourceExport source = jar.decompile(project, progress, decompilerService, DecompileErrorStrategy.TRACE_AS_SOURCE);
51 51
52 source.write(fileJarOut, progress); 52 source.write(fileJarOut, progress);
53 } 53 }