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

Use MIInferior.terminate

This commit is contained in:
Alain Magloire 2003-12-08 16:39:26 +00:00
parent 1c9df5cdbd
commit 8bdce2041e

View file

@ -594,7 +594,11 @@ public class Target implements ICDITarget {
* @see org.eclipse.cdt.debug.core.cdi.model.ICDITarget#terminate()
*/
public void terminate() throws CDIException {
session.getMISession().getMIInferior().destroy();
try {
session.getMISession().getMIInferior().terminate();
} catch (MIException e) {
throw new MI2CDIException(e);
}
}
/**