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

[218847] Remove CONTENT flag for DataModelInitializedEvent as it is not needd.

This commit is contained in:
Marc Khouzam 2009-04-23 15:45:38 +00:00
parent 626f9f736a
commit 2ecde82295

View file

@ -90,7 +90,7 @@ public class LaunchRootVMNode extends RootVMNode
flags = IModelDelta.STATE | IModelDelta.CONTENT;
}
} else if (e instanceof DataModelInitializedEvent) {
flags = IModelDelta.EXPAND | IModelDelta.CONTENT;
flags = IModelDelta.EXPAND;
}
return flags;
@ -128,7 +128,7 @@ public class LaunchRootVMNode extends RootVMNode
}
}
} else if (event instanceof DataModelInitializedEvent) {
rootDelta.setFlags(rootDelta.getFlags() | IModelDelta.EXPAND | IModelDelta.CONTENT);
rootDelta.setFlags(rootDelta.getFlags() | IModelDelta.EXPAND);
}
rm.setData(rootDelta);
rm.done();