Skip to content

Commit

Permalink
Review comments changes
Browse files Browse the repository at this point in the history
  • Loading branch information
SougandhS committed Oct 11, 2024
1 parent 5cd0617 commit 3863bee
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,10 @@ protected boolean isEnabled() {
boolean allDisabled = true;
IBreakpointManager breakpointManager = DebugPlugin.getDefault().getBreakpointManager();
IBreakpoint[] breakpoints = breakpointManager.getBreakpoints();

for (IBreakpoint bp : breakpoints) {
try {
if (bp.isEnabled()) {
allDisabled = false;
break;
return true;
}
} catch (CoreException e) {
DebugUIPlugin.log(e);
Expand Down

0 comments on commit 3863bee

Please sign in to comment.