How to remove breakpoint from eclipse?

47,764

Solution 1

Another solution

Eclipse -> Run -> Remove All Breakpoints - for removing all Breakpoints for all Time

Eclipse -> Run -> Skip All Breakpoints - for temporary remove breakpoints

enter image description here

Solution 2

Perhaps it helps to check the Breakpoints view (Ctrl+3, type 'breakpoints') and see if they are inactive only or something. There, you can also deactivate them all at once (strikeout button).

Solution 3

You can go to debug prespective

enter image description here

and check or uncheck the desired breakpoint in the Breakpoints view

enter image description here

or show the view from the Window menu

enter image description here

Share:
47,764
Rakesh Juyal
Author by

Rakesh Juyal

Actively seeking new opportunities.

Updated on March 03, 2021

Comments

  • Rakesh Juyal
    Rakesh Juyal over 3 years

    I am facing strange problem with eclipse [Ganymede]. Once I added some breakpoints in my code and now even after I delete all those breakpoints, it appears again when I start the eclipse.
    So, regularly first thing what I have to do after starting the eclipse is manually delete all breakpoints to start working. Probably eclipse stores the information about these breakpoints in some file and, I think, if I will delete that file my problem might be resolved. Please let me know if you have some solution for this.