1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

Removed obsolete internal method

This commit is contained in:
John Cortell 2007-02-06 21:12:54 +00:00
parent 4187ccb321
commit 167425f50a

View file

@ -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() ) {