highlight method removed, indent-unindents

This commit is contained in:
Honfika
2013-10-13 17:08:51 +02:00
parent 6d7aa04c44
commit f325ba0db7
180 changed files with 630 additions and 626 deletions

View File

@@ -46,14 +46,14 @@ public class CallFunctionActionItem extends ActionItem {
protected HilightedTextWriter appendTo(HilightedTextWriter writer, LocalData localData) {
String paramStr = "";
stripQuotes(functionName, localData, writer);
hilight("(", writer);
writer.append("(");
for (int t = 0; t < arguments.size(); t++) {
if (t > 0) {
hilight(",", writer);
writer.append(",");
}
arguments.get(t).toStringNL(writer, localData);
}
return hilight(")", writer);
return writer.append(")");
}
@Override