Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/operation/CompositeOperation.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/operation/CompositeOperation.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/operation/CompositeOperation.java b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/operation/CompositeOperation.java
index bb50cd90e61..2231be7ef61 100644
--- a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/operation/CompositeOperation.java
+++ b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/operation/CompositeOperation.java
@@ -36,9 +36,7 @@ public class CompositeOperation extends AbstractOperation {
}
public CompositeOperation(String name, String pluginId, OperationBehavior behavior, List<? extends IOperation> operations) {
- super(name, pluginId);
- this.operations = operations;
- this.behavior = behavior;
+ this(name, pluginId, behavior, NullOperationLogger.getSingleton(), operations);
}
public CompositeOperation(String name, String pluginId, OperationLogger logger, List<? extends IOperation> operations) {

Back to the top