java-decompiler: minor optimization

This commit is contained in:
Roman Shevchenko
2014-10-06 12:34:49 +03:00
parent 18a9c2851b
commit 8462998a86
2 changed files with 4 additions and 2 deletions

View File

@@ -41,6 +41,8 @@ import java.util.Map.Entry;
public class ClassesProcessor {
public static final int AVERAGE_CLASS_SIZE = 16 * 1024;
private Map<String, ClassNode> mapRootClasses = new HashMap<String, ClassNode>();
public ClassesProcessor(StructContext context) {
@@ -258,7 +260,7 @@ public class ClassesProcessor {
new NestedMemberAccess().propagateMemberAccess(root);
StringBuilder classBuffer = new StringBuilder();
StringBuilder classBuffer = new StringBuilder(AVERAGE_CLASS_SIZE);
new ClassWriter().classToJava(root, classBuffer, 0);
String lineSeparator = DecompilerContext.getNewLineSeparator();