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

Reset the 'terminating' flag if 'terminate' fails.

This commit is contained in:
Mikhail Khodjaiants 2003-12-09 16:20:36 +00:00
parent 5faa541664
commit 673877b222
2 changed files with 5 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2003-12-08 Mikhail Khodjaiants
Reset the 'terminating' flag if 'terminate' fails.
* CDebugTarget.java
2003-11-26 Mikhail Khodjaiants
Extracted the main part of the 'breakpointAdded' method into a separate method to avoid
double checking.

View file

@ -516,6 +516,7 @@ public class CDebugTarget extends CDebugElement
}
catch( CDIException e )
{
setTerminating( false );
targetRequestFailed( e.getMessage(), e );
}
}