mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 00:11:22 +00:00
Fixed Java code export indentation
This commit is contained in:
@@ -243,9 +243,12 @@ public class SwfJavaExporter {
|
||||
}
|
||||
|
||||
writer.append("private ").append(className).append(" ").append(tagObjName).append("(").append(isSwf ? "" : "SWF swf").append(") {").newLine();
|
||||
writer.indent();
|
||||
writer.append(className).append(" ").append(resultName).append(" = new ").append(className).append("(").append(obj instanceof Tag ? "swf" : "").append(");").newLine();
|
||||
writer.indent();
|
||||
writer.append(className).append(" ").append(resultName).append(" = new ").append(className).append("(").append(obj instanceof Tag ? "swf" : "").append(");");
|
||||
writer.unindent().unindent();
|
||||
writer.newLine();
|
||||
writer.append(sb2.toString());
|
||||
writer.indent().indent();
|
||||
writer.append(indent).append("return ").append(resultName).append(";").newLine();
|
||||
writer.unindent();
|
||||
writer.append("}").newLine().newLine();
|
||||
|
||||
Reference in New Issue
Block a user