From dbf7f21cd2fb2624d335ebef565d5ef6b3b917be Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Mon, 1 Nov 2004 01:38:35 +0000 Subject: [PATCH] indentention. --- .../eclipse/cdt/debug/mi/core/cdi/BreakpointManager.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/debug/org.eclipse.cdt.debug.mi.core/cdi/org/eclipse/cdt/debug/mi/core/cdi/BreakpointManager.java b/debug/org.eclipse.cdt.debug.mi.core/cdi/org/eclipse/cdt/debug/mi/core/cdi/BreakpointManager.java index 12a452d8811..04abd3bdab1 100644 --- a/debug/org.eclipse.cdt.debug.mi.core/cdi/org/eclipse/cdt/debug/mi/core/cdi/BreakpointManager.java +++ b/debug/org.eclipse.cdt.debug.mi.core/cdi/org/eclipse/cdt/debug/mi/core/cdi/BreakpointManager.java @@ -183,7 +183,7 @@ public class BreakpointManager extends Manager { * @param breakpoint * @throws CDIException */ - public void enableBreakpoint(ICDIBreakpoint breakpoint) throws CDIException { + public void enableBreakpoint(Breakpoint breakpoint) throws CDIException { Target target = (Target)breakpoint.getTarget(); List bList = (List)breakMap.get(target); if (bList == null) { @@ -192,7 +192,7 @@ public class BreakpointManager extends Manager { if (!bList.contains(breakpoint)) { throw new CDIException(CdiResources.getString("cdi.BreakpointManager.Not_a_CDT_breakpoint")); //$NON-NLS-1$ } - MIBreakpoint[] miBreakpoints = ((Breakpoint)breakpoint).getMIBreakpoints(); + MIBreakpoint[] miBreakpoints = breakpoint.getMIBreakpoints(); if (miBreakpoints == null || miBreakpoints.length == 0) { throw new CDIException(CdiResources.getString("cdi.BreakpointManager.Not_a_CDT_breakpoint")); //$NON-NLS-1$ } @@ -230,7 +230,7 @@ public class BreakpointManager extends Manager { * @param breakpoint * @throws CDIException */ - public void disableBreakpoint(ICDIBreakpoint breakpoint) throws CDIException { + public void disableBreakpoint(Breakpoint breakpoint) throws CDIException { Target target = (Target)breakpoint.getTarget(); List bList = (List)breakMap.get(target); if (bList == null) { @@ -240,7 +240,7 @@ public class BreakpointManager extends Manager { throw new CDIException(CdiResources.getString("cdi.BreakpointManager.Not_a_CDT_breakpoint")); //$NON-NLS-1$ } - MIBreakpoint[] miBreakpoints = ((Breakpoint)breakpoint).getMIBreakpoints(); + MIBreakpoint[] miBreakpoints = breakpoint.getMIBreakpoints(); if (miBreakpoints == null || miBreakpoints.length == 0) { throw new CDIException(CdiResources.getString("cdi.BreakpointManager.Not_a_CDT_breakpoint")); //$NON-NLS-1$ }