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