mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Bug 314637 Register manager shouldn't log exception during debug session tear-down
This commit is contained in:
parent
72d386703f
commit
a212d0d42f
1 changed files with 2 additions and 1 deletions
|
@ -421,7 +421,8 @@ public class RegisterManager extends Manager {
|
|||
MIEvent[] events = (MIEvent[])eventList.toArray(new MIEvent[0]);
|
||||
mi.fireEvents(events);
|
||||
} catch (MIException e) {
|
||||
throw new MI2CDIException(e);
|
||||
if (!target.isTerminated())
|
||||
throw new MI2CDIException(e);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue