blob: 08220f1a9b1eec0c9ccf4ce3ad16003ffb30e04f [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;
}
}