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