blob: f066e3c24f7cc12dfaa485245bf3299bffb9cc7d [file] [log] [blame]
package spike;
public class A
{
public static void main (String[] args)
{
boolean thereIsMoreToParse;
do {
thereIsMoreToParse = buildNextObject ();
} while (thereIsMoreToParse);
}
private static boolean buildNextObject () {
return false;
}
}