Another solution
Eclipse -> Run -> Remove All Breakpoints - for removing all Breakpoints for all Time
Eclipse -> Run -> Skip All Breakpoints - for temporary remove breakpoints

Another solution
Eclipse -> Run -> Remove All Breakpoints - for removing all Breakpoints for all Time
Eclipse -> Run -> Skip All Breakpoints - for temporary remove breakpoints

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).
Videos
As other users have suggested, to view all breakpoints : Window-> Show View -> Breakpoints.
To delete them, there are three ways:
- select the breakpoint & click on the cross button displayed in the same view.
- select the breakpoint, right click & select remove. (You can also temporarily disable it & remove all the breakpoints from this menu.)
- Go to the breakpoint in your file & double-click it.
Here is what worked for me, just today, Run-> Remove All Breakpoints
Under the Run menu, there's a Skip All Breakpoints checkbox. If you select that, breakpoints won't fire (the actual breakpoint markers in the source have a line drawn through them to indicate they're in skip mode).
Of course, in the default configuration, running the code (rather than debugging it) also seems to ignore breakpoints so you may want to try running it instead of debugging. Note that this is default behaviour under Galileo/Ubuntu - whether that's different under other versions or operating systems is unknown to me.
This is a bit old question, but maybe someone will find this useful..
If you would like to disable all breakpoints and enable just one breakpoint, then you should open the Breakpoints window in the Debug tab and Select all Breakpoints(Ctrl - A) and right click -> disable and then select the breakpoint you need activated and right click -> enable.
try to select Debug then group by as I described in below image

Now you can select only the node of your file and disable.
One click disable, one click enable
Have a look at the breakpoints view where you can disable/remove individual breakpoints. They should also be ordered by class/file.

open debug perspective [right conrer]
go to breakpoints
click clear all breakpoints [double X] or scroll until you find the breakpoint which doesn't want to go away and delete it.
None of the solutions here worked for me. Because I removed the breakpoints from breakpoints view but could not get rid of them in the editor. I think this is a kind of bug. What it worked for me is simply
Select the whole class (Ctrl + a)
Cut the whole class (Ctrl + x)
Paste it back (Ctrl + v)
Sometimes, the solution is easier than we think:)
Open the project > select the debugging view >> Somewhere in that view there will be a window titled Breakpoints. From there you can remove the breakpoint you want to get rid of.
In eclipse try the following:
- Goto windows -> open perspective -> other -> debug
- click on Breakpoints tab in the
- Remove all/specific breakpoint by clicking on either cross/double cross button

