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:
parent
4b9ae6832a
commit
34d635498a
1 changed files with 0 additions and 34 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue