Configurable code formatting (Indentation + brace position)

This commit is contained in:
Jindra Pet��k
2014-02-25 15:52:41 +01:00
parent 856765011c
commit 1e3a67ec1c
36 changed files with 623 additions and 578 deletions
@@ -97,13 +97,11 @@ public class FunctionActionItem extends ActionItem {
}
writer.append(pname);
}
writer.append(")").newLine();
writer.append("{").newLine();
writer.indent();
writer.append(")").startBlock();
Graph.graphToString(actions, writer, localData);
writer.unindent();
return writer.append("}");
return writer.endBlock();
}
@Override