1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Removed unused constructor.

This commit is contained in:
Mikhail Khodjaiants 2002-11-01 18:23:49 +00:00
parent 4b9ae6832a
commit 34d635498a

View file

@ -218,40 +218,6 @@ public class CDebugTarget extends CDebugElement
*/
private boolean fIsDebuggerProcessDefault = false;
/**
* Constructor for CDebugTarget.
* @param target
*/
public CDebugTarget( ILaunch launch,
int targetType,
ICDITarget cdiTarget,
String name,
IProcess debuggeeProcess,
IProcess debuggerProcess,
IProject project,
boolean allowsTerminate,
boolean allowsDisconnect )
{
super( null );
setLaunch( launch );
setTargetType( targetType );
setDebugTarget( this );
setName( name );
setProcesses( debuggeeProcess, debuggerProcess );
setCDITarget( cdiTarget );
setBreakpoints( new HashMap( 5 ) );
setTemporaryBreakpoints( new ArrayList() );
getLaunch().setSourceLocator( createSourceLocator( project ) );
setConfiguration( cdiTarget.getSession().getConfiguration() );
fSupportsTerminate = allowsTerminate & getConfiguration().supportsTerminate();
fSupportsDisconnect = allowsDisconnect & getConfiguration().supportsDisconnect();
setThreadList( new ArrayList( 5 ) );
initialize();
DebugPlugin.getDefault().getLaunchManager().addLaunchListener( this );
DebugPlugin.getDefault().getExpressionManager().addExpressionListener( this );
getCDISession().getEventManager().addEventListener( this );
}
/**
* Constructor for CDebugTarget.
* @param target