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

@@ -82,7 +82,7 @@ public class Fernflower implements IDecompiledData {
@Override
public String getClassContent(StructClass cl) {
try {
StringBuilder buffer = new StringBuilder();
StringBuilder buffer = new StringBuilder(ClassesProcessor.AVERAGE_CLASS_SIZE);
classesProcessor.writeClass(cl, buffer);
return buffer.toString();
}