Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Xenos2016-03-15 14:50:20 +0000
committerStefan Xenos2016-03-15 14:50:20 +0000
commitc1d35c1a2d5190960948cc14efaf07e720eb7b52 (patch)
tree24b6b4b1a4f181a5332da1f94205720dc76aa954
parent04ff0093b42c511695b2ca47494365e5d8214662 (diff)
downloadrt.equinox.bundles-I20160315-2000.tar.gz
rt.equinox.bundles-I20160315-2000.tar.xz
rt.equinox.bundles-I20160315-2000.zip
Add a missing @since tag Signed-off-by: Stefan Xenos <sxenos@gmail.com>
-rw-r--r--bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/SubMonitor.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/SubMonitor.java b/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/SubMonitor.java
index 88b904a56..0e8385800 100644
--- a/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/SubMonitor.java
+++ b/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/SubMonitor.java
@@ -508,6 +508,7 @@ public final class SubMonitor implements IProgressMonitorWithBlocking {
* {@link #done()} on a possibly-null monitor.
*
* @param monitor a progress monitor or null
+ * @since 3.8
*/
public static void done(IProgressMonitor monitor) {
if (monitor != null) {

Back to the top