blob: 37cb63bc3527d380e3fb14a2e8db33bc7bb6bbf2 [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;
}
}