mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
17 lines
253 B
Java
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;
|
|
}
|
|
}
|