From 167425f50a5f1a2f3677a118ff65b0aca5b6ddae Mon Sep 17 00:00:00 2001 From: John Cortell Date: Tue, 6 Feb 2007 21:12:54 +0000 Subject: [PATCH] Removed obsolete internal method --- .../internal/core/model/CDebugTarget.java | 21 ------------------- 1 file changed, 21 deletions(-) diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/model/CDebugTarget.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/model/CDebugTarget.java index b5d69f0f546..51c40e0da71 100644 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/model/CDebugTarget.java +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/model/CDebugTarget.java @@ -278,27 +278,6 @@ public class CDebugTarget extends CDebugElement implements ICDebugTarget, ICDIEv getBreakpointManager().initialize(); } - public void start( boolean stopInMain, boolean resume ) throws DebugException { - String stopSymbol = null; - try { - if ( stopInMain ) - stopSymbol = getLaunch().getLaunchConfiguration().getAttribute( ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_STOP_AT_MAIN_SYMBOL, ICDTLaunchConfigurationConstants.DEBUGGER_STOP_AT_MAIN_SYMBOL_DEFAULT ); - } - catch( CoreException e ) { - throw new DebugException( e.getStatus() ); - } - ICDITargetConfiguration config = getConfiguration(); - if ( config.supportsBreakpoints() ) { - getBreakpointManager().setInitialBreakpoints(); - if ( stopSymbol != null && stopSymbol.length() != 0 ) { - stopAtSymbol( stopSymbol ); - } - } - if ( config.supportsResume() && resume ) { - resume(); - } - } - public void start( String stopSymbol, boolean resume ) throws DebugException { ICDITargetConfiguration config = getConfiguration(); if ( config.supportsBreakpoints() ) {