blob: 9824f352f39c3e54cdaa31f92b1dc0cec3ccda4c [file] [log] [blame]
public class FormatterProblem
{
public static boolean isZero(int x)
{
if (x==0) { return true; } // toto
else // here is the comment that the formatter doesn't like
{ return false; }
}
}