for (int i = 0; i < orderedNames.length; i++) {
Configuration childConfig = config.getChild(orderedNames[i], false);
if (childConfig != null) {
ProcessingNodeBuilder builder = this.treeBuilder.createNodeBuilder(childConfig);
// Don't build them since "pipelines" is not present in this list
builder.buildNode(childConfig);
}
}
ProcessingNode pipelines = null;