summaryrefslogtreecommitdiff
path: root/enigma/src/main/java
diff options
context:
space:
mode:
authorGravatar 2xsaiko2020-11-15 11:48:06 +0100
committerGravatar GitHub2020-11-15 11:48:06 +0100
commit361c0c86b2b37fe41daf212423380a4057b3f102 (patch)
tree08ca580be8f4c7a5c6d0f514922c642c4bba1c28 /enigma/src/main/java
parentMerge pull request #323 from YanisBft/various (diff)
parentDo not abort decompile command on decompiler errors (diff)
downloadenigma-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')
-rw-r--r--enigma/src/main/java/cuchaz/enigma/EnigmaProject.java4
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);