1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Do not terminate process when handling 'terminated' event.

This commit is contained in:
Mikhail Khodjaiants 2002-10-03 15:04:35 +00:00
parent 3a38658386
commit dddc587f19

View file

@ -1346,18 +1346,6 @@ public class CDebugTarget extends CDebugElement
private void handleTerminatedEvent( ICDIDestroyedEvent event )
{
IProcess process = getProcess();
if ( process != null )
{
try
{
process.terminate();
}
catch( DebugException e )
{
CDebugCorePlugin.log( e.getStatus() );
}
}
terminated();
}