mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-30 21:55:31 +02:00
Fixed typo in method name
This commit is contained in:
parent
8a42979447
commit
1c28b186cf
1 changed files with 2 additions and 2 deletions
|
@ -476,7 +476,7 @@ public class CBreakpointManager implements IBreakpointsListener, IBreakpointMana
|
|||
if ( cdiBreakpoint instanceof ICDIWatchpoint )
|
||||
doHandleWatchpointCreatedEvent( (ICDIWatchpoint)cdiBreakpoint );
|
||||
if ( cdiBreakpoint instanceof ICDIEventBreakpoint )
|
||||
doHandleCatachpointCreatedEvent( (ICDIEventBreakpoint)cdiBreakpoint );
|
||||
doHandleEventBreakpointCreatedEvent( (ICDIEventBreakpoint)cdiBreakpoint );
|
||||
else if ( cdiBreakpoint instanceof ICDILocationBreakpoint )
|
||||
doHandleLocationBreakpointCreatedEvent( (ICDILocationBreakpoint)cdiBreakpoint );
|
||||
if ( !isTemporary(cdiBreakpoint) && !DebugPlugin.getDefault().getBreakpointManager().isEnabled() ) {
|
||||
|
@ -484,7 +484,7 @@ public class CBreakpointManager implements IBreakpointsListener, IBreakpointMana
|
|||
}
|
||||
}
|
||||
|
||||
private void doHandleCatachpointCreatedEvent(ICDIEventBreakpoint cdiEventBkpt) {
|
||||
private void doHandleEventBreakpointCreatedEvent(ICDIEventBreakpoint cdiEventBkpt) {
|
||||
ICBreakpoint breakpoint = null;
|
||||
synchronized( getBreakpointMap() ) {
|
||||
breakpoint = getBreakpointMap().getCBreakpoint( cdiEventBkpt );
|
||||
|
|
Loading…
Add table
Reference in a new issue