Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SynchronizeModelAction.java')
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SynchronizeModelAction.java24
1 files changed, 12 insertions, 12 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SynchronizeModelAction.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SynchronizeModelAction.java
index 7dc79f057..6a8d5be1a 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SynchronizeModelAction.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SynchronizeModelAction.java
@@ -101,18 +101,18 @@ public abstract class SynchronizeModelAction extends BaseSelectionListenerAction
}
}
- /**
- * Create and run the operation for this action. By default, the operation is created
- * by calling <code>getSubscriberOperation</code> and then run. Subclasses may
- * override.
- *
- * @throws InvocationTargetException
- * @throws InterruptedException
- * @since 3.1
- */
- protected void runOperation() throws InvocationTargetException, InterruptedException {
- getSubscriberOperation(configuration, getFilteredDiffElements()).run();
- }
+ /**
+ * Create and run the operation for this action. By default, the operation is created
+ * by calling <code>getSubscriberOperation</code> and then run. Subclasses may
+ * override.
+ *
+ * @throws InvocationTargetException
+ * @throws InterruptedException
+ * @since 3.1
+ */
+ protected void runOperation() throws InvocationTargetException, InterruptedException {
+ getSubscriberOperation(configuration, getFilteredDiffElements()).run();
+ }
/**
* Return whether dirty editor should be saved before this action is run.

Back to the top