1
0
Fork 0
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:
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 )
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 );