indent fix in traitslotconst

This commit is contained in:
Honfika
2013-09-09 20:46:38 +02:00
parent 97385bd634
commit fc7b82b866
6 changed files with 24 additions and 18 deletions

View File

@@ -1184,7 +1184,7 @@ public class AVM2Code implements Serializable {
public String tabString(int len) {
StringBuilder ret = new StringBuilder();
for (int i = 0; i < len; i++) {
ret.append(ABC.IDENT_STRING);
ret.append(Graph.INDENT_STRING);
}
return ret.toString();
}