Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2016-03-08 15:40:58 +0000
committerMarkus Keller2016-03-08 15:40:58 +0000
commitab9296ce2fe84e0ab7ce1657c46c387895fff029 (patch)
treeaf9625e088a4f64765d38a739856eb00c35d77cb
parentbee95fb96f925b3b794573793e320a4fa21dcba1 (diff)
downloadrt.equinox.bundles-ab9296ce2fe84e0ab7ce1657c46c387895fff029.tar.gz
rt.equinox.bundles-ab9296ce2fe84e0ab7ce1657c46c387895fff029.tar.xz
rt.equinox.bundles-ab9296ce2fe84e0ab7ce1657c46c387895fff029.zip
Bug 474264: Need an easier to use variant of Job.create methodY20160310-0830Y20160310-0800I20160314-1400I20160314-0800I20160313-2000
-rw-r--r--bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/ICoreRunnable.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/ICoreRunnable.java b/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/ICoreRunnable.java
index 8e5cd9b5b..2d621b70e 100644
--- a/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/ICoreRunnable.java
+++ b/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/ICoreRunnable.java
@@ -32,8 +32,8 @@ public interface ICoreRunnable {
* calling {@link IProgressMonitor#done()} on the given monitor, and
* the caller must not rely on {@link IProgressMonitor#done()} having been
* called by the receiver.
- * @exception CoreException if this operation fails.
- * @exception OperationCanceledException if the operation is canceled.
+ * @exception CoreException if this operation fails
+ * @exception OperationCanceledException if this operation is canceled
*/
public void run(IProgressMonitor monitor) throws CoreException;
}

Back to the top