1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-03 14:25:37 +02:00

Bug 278805 Fix regression, #isTargetBreakpoint(...) should default to allowing breakpoints it can't classify.

This commit is contained in:
James Blackburn 2009-06-02 15:49:10 +00:00
parent fce5c580e4
commit 350d47f245

View file

@ -1257,7 +1257,9 @@ public class CBreakpointManager implements IBreakpointsListener, IBreakpointMana
return ((CSourceLookupDirector)sl).contains( project );
}
}
return false;
// Allow unclassified breakpoints i.e. those which aren't project scoped,
// or not resource related (e.g. watchpoints)
return true;
}
public boolean supportsBreakpoint( ICBreakpoint breakpoint ) {