1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 06:05:24 +02:00

Fixed typo in method name

This commit is contained in:
John Cortell 2008-05-13 23:57:44 +00:00
parent 8a42979447
commit 1c28b186cf

View file

@ -476,7 +476,7 @@ public class CBreakpointManager implements IBreakpointsListener, IBreakpointMana
if ( cdiBreakpoint instanceof ICDIWatchpoint ) if ( cdiBreakpoint instanceof ICDIWatchpoint )
doHandleWatchpointCreatedEvent( (ICDIWatchpoint)cdiBreakpoint ); doHandleWatchpointCreatedEvent( (ICDIWatchpoint)cdiBreakpoint );
if ( cdiBreakpoint instanceof ICDIEventBreakpoint ) if ( cdiBreakpoint instanceof ICDIEventBreakpoint )
doHandleCatachpointCreatedEvent( (ICDIEventBreakpoint)cdiBreakpoint ); doHandleEventBreakpointCreatedEvent( (ICDIEventBreakpoint)cdiBreakpoint );
else if ( cdiBreakpoint instanceof ICDILocationBreakpoint ) else if ( cdiBreakpoint instanceof ICDILocationBreakpoint )
doHandleLocationBreakpointCreatedEvent( (ICDILocationBreakpoint)cdiBreakpoint ); doHandleLocationBreakpointCreatedEvent( (ICDILocationBreakpoint)cdiBreakpoint );
if ( !isTemporary(cdiBreakpoint) && !DebugPlugin.getDefault().getBreakpointManager().isEnabled() ) { 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; ICBreakpoint breakpoint = null;
synchronized( getBreakpointMap() ) { synchronized( getBreakpointMap() ) {
breakpoint = getBreakpointMap().getCBreakpoint( cdiEventBkpt ); breakpoint = getBreakpointMap().getCBreakpoint( cdiEventBkpt );