gitlab #72
Change-Id: I9dc5673e41de56d25f550c72d86f15791c8d1851
public static void finalizeDBLoad(P3DRootNode rootNode) throws Exception{
for (INode node : rootNode.getChild()) {
if (node instanceof PipeRun) {
- for (PipelineComponent pc : ((PipeRun) node).getChild())
+ for (PipelineComponent pc : ((PipeRun) node).getChild()) {
pc.sync();
+ pc.updateParameters();
+ }
} else if (node instanceof Equipment) {
- for (PipelineComponent pc : ((Equipment) node).getChild())
+ for (PipelineComponent pc : ((Equipment) node).getChild()) {
pc.sync();
+ pc.updateParameters();
+ }
}
}