Files

17 lines
253 B
Java

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