printlnWithNoIndent() added

This commit is contained in:
Andrey Breslav
2012-08-09 17:35:03 +04:00
parent 8dd9225411
commit e087d50a7f
@@ -46,6 +46,11 @@ public class Printer {
}
}
public void printlnWithNoIndent(Object... objects) {
printWithNoIndent(objects);
out.append("\n");
}
public void pushIndent() {
indent += INDENTATION_UNIT;
}