diff options
| author | 2020-11-15 11:48:06 +0100 | |
|---|---|---|
| committer | 2020-11-15 11:48:06 +0100 | |
| commit | 361c0c86b2b37fe41daf212423380a4057b3f102 (patch) | |
| tree | 08ca580be8f4c7a5c6d0f514922c642c4bba1c28 /enigma/src/main/java/cuchaz | |
| parent | Merge pull request #323 from YanisBft/various (diff) | |
| parent | Do not abort decompile command on decompiler errors (diff) | |
| download | enigma-fork-361c0c86b2b37fe41daf212423380a4057b3f102.tar.gz enigma-fork-361c0c86b2b37fe41daf212423380a4057b3f102.tar.xz enigma-fork-361c0c86b2b37fe41daf212423380a4057b3f102.zip | |
Merge pull request #322 from ComunidadAylas/master
Do not abort decompile command on decompiler errors
Diffstat (limited to 'enigma/src/main/java/cuchaz')
| -rw-r--r-- | enigma/src/main/java/cuchaz/enigma/EnigmaProject.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/enigma/src/main/java/cuchaz/enigma/EnigmaProject.java b/enigma/src/main/java/cuchaz/enigma/EnigmaProject.java index f6420d2..fcd2c96 100644 --- a/enigma/src/main/java/cuchaz/enigma/EnigmaProject.java +++ b/enigma/src/main/java/cuchaz/enigma/EnigmaProject.java | |||
| @@ -216,10 +216,6 @@ public class EnigmaProject { | |||
| 216 | } | 216 | } |
| 217 | } | 217 | } |
| 218 | 218 | ||
| 219 | public SourceExport decompile(ProgressListener progress, DecompilerService decompilerService) { | ||
| 220 | return this.decompile(progress, decompilerService, DecompileErrorStrategy.PROPAGATE); | ||
| 221 | } | ||
| 222 | |||
| 223 | public SourceExport decompile(ProgressListener progress, DecompilerService decompilerService, DecompileErrorStrategy errorStrategy) { | 219 | public SourceExport decompile(ProgressListener progress, DecompilerService decompilerService, DecompileErrorStrategy errorStrategy) { |
| 224 | List<ClassSource> decompiled = this.decompileStream(progress, decompilerService, errorStrategy).collect(Collectors.toList()); | 220 | List<ClassSource> decompiled = this.decompileStream(progress, decompilerService, errorStrategy).collect(Collectors.toList()); |
| 225 | return new SourceExport(decompiled); | 221 | return new SourceExport(decompiled); |