mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-07 00:05:53 +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:
parent
369981cc43
commit
1f146e629b
1 changed files with 1 additions and 5 deletions
|
@ -679,11 +679,7 @@ public class VariableManager extends Manager {
|
||||||
MIVarCreate var = factory.createMIVarCreate(variable.getName());
|
MIVarCreate var = factory.createMIVarCreate(variable.getName());
|
||||||
mi.postCommand(var, -1);
|
mi.postCommand(var, -1);
|
||||||
variable.setMIVarCreate(var);
|
variable.setMIVarCreate(var);
|
||||||
try {
|
update(target, variable, eventList);
|
||||||
update(target,variable,eventList);
|
|
||||||
} catch (Exception ex1) {
|
|
||||||
//nothing...
|
|
||||||
}
|
|
||||||
} catch (MIException e) {
|
} catch (MIException e) {
|
||||||
throw new MI2CDIException(e);
|
throw new MI2CDIException(e);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue