Jim
Jim

Reputation: 19552

How to remove disable breakpoints I did not set?

While debugging I get breakpoints from code that is not mine and for breakpoints I have not set.
Either it seems to come from libraries included or from java source code somehow.
Example:

enter image description here

Question:
This is really annoying. I can not find a way to disable these breakpoints and I keep pressing Resume constantly to move on.
How can I remove them or disable them? The breakpoint tab shows only my breakpoints available to be skipped or deleted

Upvotes: 5

Views: 123

Answers (1)

jens-na
jens-na

Reputation: 2274

You can unset the following parameter in Eclipse:

Window -> Preferences -> Java -> Debug -> Suspend execution on uncaught exceptions

Upvotes: 4

Related Questions