blob: 116be1f48c37915407a4f90e259df5c67edba3c1 [file] [log] [blame]
public class FormaterBug {
public static void main(String[] args) {
Object o = null;
o = null;
o = o;
o = null;
synchronized (o) {
// DO something
}
// Why does the code formater indent that lines?
o = o;
o = null;
o = o;
o = null;
}
}