Java - Methods and Code Reusability
What problem does the following Java code cause?
public class LoopTest {
public static void main(String[] args) {
start();
}
static void start() {
loop();
}
static void loop() {
start();
}
}