Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I remove all breakpoints from NetBeans 6.8?

Tags:

java

netbeans

How can I remove all breakpoints from NetBeans 6.8?

like image 616
user354299 Avatar asked May 31 '10 04:05

user354299


People also ask

What is the shortcut key to clear all breakpoints?

To clear all breakpoints in the application From the Debug menu, choose Clear All Breakpoints (CTRL+SHIFT+F9).


2 Answers

Select menu Window / Debugging / Breakpoints (or press Alt + Shift + 5), then right-click in the Breakpoints window and select Delete All.

like image 120
Jesper Avatar answered Sep 22 '22 15:09

Jesper


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)

like image 36
Joshua Dance Avatar answered Sep 22 '22 15:09

Joshua Dance