decompiler: for now disabled line numbers in inner classes

This commit is contained in:
Egor.Ushakov
2014-10-10 13:56:36 +04:00
parent e0f22e6629
commit 7bb0f5ba7e
3 changed files with 28 additions and 20 deletions

View File

@@ -268,7 +268,10 @@ public class NewExprent extends Exprent {
new ClassWriter().classLambdaToJava(child, buf, methodObject, indent);
}
else {
// do not track lines in sub classes for now
buf.setTrackLines(false);
new ClassWriter().classToJava(child, buf, indent);
buf.setTrackLines(true);
}
}
else if (directArrayInit) {