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