1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 17:56:01 +02:00

Add brackets

Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
This commit is contained in:
Marc Khouzam 2015-03-23 10:11:47 -04:00
parent 5ca4c351df
commit 12bb52805e

View file

@ -231,9 +231,10 @@ public abstract class AbstractExecutionContextVMNode extends AbstractDMVMNode
// It is possible for a thread node to be an immediate child of a launch node // It is possible for a thread node to be an immediate child of a launch node
// with no container node in between. // with no container node in between.
if (topContainer != null) if (topContainer != null) {
parentDelta.addNode(createVMContext(topContainer), 0, IModelDelta.NO_CHANGE); parentDelta.addNode(createVMContext(topContainer), 0, IModelDelta.NO_CHANGE);
} }
}
else if (parentDelta.getElement() instanceof IDMVMContext) { else if (parentDelta.getElement() instanceof IDMVMContext) {
IDMVMContext vmContext = (IDMVMContext)parentDelta.getElement(); IDMVMContext vmContext = (IDMVMContext)parentDelta.getElement();
IDMContext dmContext = vmContext.getDMContext(); IDMContext dmContext = vmContext.getDMContext();