Debugging step buttons disabled in Eclipse Oxygen

Viewed 4010

I have upgraded Eclipse to Oxygen, with Scala and Python added. I noticed that when programming in Java, the step commands of the debugger remain disabled. I can run the debugger, and it will run until it hits a breakpoint, but then i cannot step in or over. I can only stop the (local) VM.

Any thoughts?

2 Answers

If you have all code in main function then put a breakpoint at main function as well. And if you have multiple functions, breakpoint on methods as well ( if you have breakpoint inside that method).

Basically, put a breakpoint on the function in which you have added breakpoints.

Related