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/EmptyOperation.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/operation/EmptyOperation.java42
1 files changed, 21 insertions, 21 deletions
diff --git a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/operation/EmptyOperation.java b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/operation/EmptyOperation.java
index 084a00357aa..4ec07798e30 100644
--- a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/operation/EmptyOperation.java
+++ b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/operation/EmptyOperation.java
@@ -8,24 +8,24 @@
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
-package org.eclipse.osee.framework.core.operation;
-
-import org.eclipse.core.runtime.IProgressMonitor;
-
-/**
- * Operation to return if no work is to be done.
- *
- * @author Donald G. Dunne
- */
-public class EmptyOperation extends AbstractOperation {
-
- public EmptyOperation(String operationName, String pluginId) {
- super(operationName, pluginId);
- }
-
- @Override
- protected void doWork(IProgressMonitor monitor) throws Exception {
- monitor.worked(calculateWork(1.0));
- }
-
-}
+package org.eclipse.osee.framework.core.operation;
+
+import org.eclipse.core.runtime.IProgressMonitor;
+
+/**
+ * Operation to return if no work is to be done.
+ *
+ * @author Donald G. Dunne
+ */
+public class EmptyOperation extends AbstractOperation {
+
+ public EmptyOperation(String operationName, String pluginId) {
+ super(operationName, pluginId);
+ }
+
+ @Override
+ protected void doWork(IProgressMonitor monitor) throws Exception {
+ monitor.worked(calculateWork(1.0));
+ }
+
+}

Back to the top