1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-06 07:45:50 +02:00

Fix for PR169548, where the MI variable was not actually created. At the update we try to create again

This commit is contained in:
Alain Magloire 2007-01-19 21:26:00 +00:00
parent 369981cc43
commit 1f146e629b

View file

@ -679,11 +679,7 @@ public class VariableManager extends Manager {
MIVarCreate var = factory.createMIVarCreate(variable.getName());
mi.postCommand(var, -1);
variable.setMIVarCreate(var);
try {
update(target,variable,eventList);
} catch (Exception ex1) {
//nothing...
}
update(target, variable, eventList);
} catch (MIException e) {
throw new MI2CDIException(e);
}