Can't remove some breakpoints in Eclipse

Sometimes Eclipse gets caught in moments like this. enter image description here

but on that line I didn't put a breakpoint, but still it keeps hitting. This makes it impossible to skip other breakpoints. How can I remove them.

+3


source to share


2 answers


I experienced this error as well.



Open the Breakpoints view (Window-> Show View β†’ Breakpoints orif is not there in the list: Window β†’ Show View β†’ Other β†’ Debug β†’ Breakpoints). There you will get a list with all the breakpoints where you can remove them easily.

+5


source


I think I found the problem. I have classes with the same name and the same package, but with different projects. So when I put one breakpoint in one class, eclipse puts another hidden breakpoint in the Twin class on the same line. Therefore, to stop this, we have to remove the actual breakpoint. But this is definitely not a solution when we need breakpoints in both places. Also, when the code is updated, the mappings are sometimes scrambled. So when you click on a breakpoint, say line 4028, and when you click on it, the blue dot refers to something greater than 4098.



0


source







All Articles