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