Since upgrading Eclipse from Neon to Oxygen, I have had a problem with the "F6 - Step Over" feature when debugging my code. Every time I use "Step Over" and the current line contains a method call, I will switch to a method (the behavior is "F5 - Step Into"). The same behavior occurs when using the Step by Step button. After entering the method, I lost the connection (for example, when reusing "F6 - Step Over") in the debugger and an error occurred: "com.sun.jdi.InternalException: I received an error code in response: 35, a step request was created.".
A typical line of code causing the indicated problem looks like this:
Collection<Object> coll = getSomething(...);
...
...
private Collection<Object> getSomething(...) { ... }
Does anyone have the same problem and can give me a hint how to solve this?
source
share