diff options
| author | 2025-09-10 20:26:11 +0100 | |
|---|---|---|
| committer | 2025-09-13 09:14:23 +0100 | |
| commit | 79ab43c66f9b40d9f6780f14b8d423a489e77c5c (patch) | |
| tree | 73b1ef41b099ea468703898ea74131d5b2713d5a /enigma-swing | |
| parent | Add more utility methods (diff) | |
| download | enigma-79ab43c66f9b40d9f6780f14b8d423a489e77c5c.tar.gz enigma-79ab43c66f9b40d9f6780f14b8d423a489e77c5c.tar.xz enigma-79ab43c66f9b40d9f6780f14b8d423a489e77c5c.zip | |
Add a way to transform the decompiler input
Diffstat (limited to 'enigma-swing')
| -rw-r--r-- | enigma-swing/src/main/java/cuchaz/enigma/gui/GuiController.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/enigma-swing/src/main/java/cuchaz/enigma/gui/GuiController.java b/enigma-swing/src/main/java/cuchaz/enigma/gui/GuiController.java index 1c4549d6..7691f39c 100644 --- a/enigma-swing/src/main/java/cuchaz/enigma/gui/GuiController.java +++ b/enigma-swing/src/main/java/cuchaz/enigma/gui/GuiController.java | |||
| @@ -311,7 +311,7 @@ public class GuiController implements ClientPacketHandler, GuiView, DataInvalida | |||
| 311 | 311 | ||
| 312 | return ProgressDialog.runOffThread(this.gui.getFrame(), progress -> { | 312 | return ProgressDialog.runOffThread(this.gui.getFrame(), progress -> { |
| 313 | EnigmaProject.JarExport jar = project.exportRemappedJar(progress); | 313 | EnigmaProject.JarExport jar = project.exportRemappedJar(progress); |
| 314 | jar.decompileStream(progress, chp.getDecompilerService(), EnigmaProject.DecompileErrorStrategy.TRACE_AS_SOURCE).forEach(source -> { | 314 | jar.decompileStream(project, progress, chp.getDecompilerService(), EnigmaProject.DecompileErrorStrategy.TRACE_AS_SOURCE).forEach(source -> { |
| 315 | try { | 315 | try { |
| 316 | source.writeTo(source.resolvePath(path)); | 316 | source.writeTo(source.resolvePath(path)); |
| 317 | } catch (IOException e) { | 317 | } catch (IOException e) { |