How can I remove all breakpoints from NetBeans 6.8?
-
1I noticed that my java application was running really slow in NetBeans 8.0 debugger. I saw I had lots & lots of DISABLED breakpoints but removing all the unneeded ones as described here, made a big improvement in startup time. – k1eran May 22 '14 at 17:19
7 Answers
Select menu Window / Debugging / Breakpoints (or press Alt + Shift + 5), then right-click in the Breakpoints window and select Delete All.

- 55,661
- 15
- 90
- 140

- 202,709
- 46
- 318
- 350
-
12
-
4
-
1On NetBeans7.4 removed from list, but it still not disappeared from line numbers.. Had to restart NetBeans, then OK. – Ernestas Gruodis Feb 15 '15 at 18:28
-
1On 8.2, you might also want to click the gear icon on the breakpoints pane, deselect "From Opened Projects Only" and delete those too. I had breakpoints lying around from long-deleted projects. – slim Mar 27 '17 at 08:53
The top answer is how to permanently remove the breakpoints. You can also temporarily remove all breakpoints by using Disable All instead of Delete All.
Select menu Window / Debugging / Breakpoints (or press Alt + Shift + 5), then right-click in the Breakpoints window and select Disable All.
Works in NetBeans 7.4 (and NetBeans 8)

- 55,661
- 15
- 90
- 140

- 8,847
- 4
- 67
- 72
-
@james.garriss top answer is how to delete. I didn't want to delete, didn't realize I could disable. Posted to help rookies like me in the future. No harm intended. :) – Joshua Dance Apr 02 '14 at 05:16
-
1
In 6.0 it was in the Window | Debugging menu.
You can right click then choose "Delete All".

- 5,457
- 2
- 39
- 46
just to confirm that this answer works in Netbeans 8.1 (answer by YCF_L) Select menu Window / Debugging / Breakpoints (or press Alt + Shift + 5), then right-click in the Breakpoints window and select Disable All.
Works in NetBeans 7.4 (and NetBeans 8)

- 69
- 1
- 8
You have two options - disable and delete the breakpoints. Disable keeps the position of the breakpoint but debugger doesn't stop there delete removes the breakpoint completely. To delete breakpoints go to Window-> Debugger and select "Delete All".

- 1,156
- 1
- 10
- 25
adding at the other responses, after go to the next rout: Windows/Debugging/Breakpoints (or Alt + Shift + 5), then right-click at the breakpoints window you can Disable or Delete one or more breakpoints. Disable all or Delete all, and select the option Go to the source and see where ie the breakpoint.
Have a nice day!

- 3
- 3
Break points can also be deleted whilst debugging by selecting them in the breakpoints tab (next to the variables and call stack tabs) and then deleting with the delete button or mouse right click menu.

- 31
- 4