small code formatting fix

This commit is contained in:
Honfika
2013-10-17 22:30:44 +02:00
parent 908e73e0b3
commit ff0a75a6c8
2 changed files with 0 additions and 3 deletions

View File

@@ -70,7 +70,6 @@ public class NewFunctionAVM2Item extends AVM2Item {
writer.endMethod();
writer.newLine();
writer.append("{").newLine();
writer.indent();
if (body != null) {
try {
body.toString(path + "/inner", ExportMode.SOURCE, isStatic, scriptIndex, classIndex, abc, null, constants, methodInfo, new Stack<GraphTargetItem>()/*scopeStack*/, false, writer, fullyQualifiedNames, null);
@@ -79,7 +78,6 @@ public class NewFunctionAVM2Item extends AVM2Item {
}
}
writer.newLine();
writer.unindent();
writer.append("}");
return writer;
}

View File

@@ -54,7 +54,6 @@ public class NewObjectAVM2Item extends AVM2Item {
}
writer.append("}");
if (!singleLine) {
writer.newLine();
writer.unindent();
}
return writer;