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
@@ -37,10 +37,10 @@ public class ImplementsOpActionItem extends ActionItem {
@Override
protected HilightedTextWriter appendTo(HilightedTextWriter writer, LocalData localData) {
subclass.toString(writer, localData);
hilight(" implements ", writer);
writer.append(" implements ");
for (int i = 0; i < superclasses.size(); i++) {
if (i > 0) {
hilight(",", writer);
writer.append(",");
}
superclasses.get(i).toString(writer, localData);
}