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:
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 )
|
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 );
|
||||||
|
|
Loading…
Add table
Reference in a new issue