blob: 57f70dd15b3baae5a250331653e9a965e4aaabf3 [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;
}
}