java-decompiler: better diagnostic

master
Roman Shevchenko 10 years ago
parent 85e6caaea1
commit 472f68f18a
  1. 3
      src/org/jetbrains/java/decompiler/main/rels/ClassWrapper.java

@ -61,6 +61,7 @@ public class ClassWrapper {
}
int maxSec = Integer.parseInt(DecompilerContext.getProperty(IFernflowerPreferences.MAX_PROCESSING_METHOD).toString());
boolean testMode = DecompilerContext.getOption(IFernflowerPreferences.UNIT_TEST_MODE);
for (StructMethod mt : classStruct.getMethods()) {
DecompilerContext.getLogger().startMethod(mt.getName() + " " + mt.getDescriptor());
@ -83,7 +84,7 @@ public class ClassWrapper {
try {
if (mt.containsCode()) {
if (maxSec == 0) {
if (maxSec == 0 || testMode) {
root = MethodProcessorRunnable.codeToJava(mt, varProc);
}
else {

Loading…
Cancel
Save