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
@@ -47,12 +47,12 @@ public class DeleteActionItem extends ActionItem {
@Override
protected HilightedTextWriter appendTo(HilightedTextWriter writer, LocalData localData) {
hilight("delete ", writer);
writer.append("delete ");
if (object == null) {
return propertyName.toString(writer, localData);
}
object.toString(writer, localData);
hilight(".", writer);
writer.append(".");
return stripQuotes(propertyName, localData, writer);
}