Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Keppler2018-04-02 07:49:37 +0000
committerAlexander Kurtakov2018-04-12 11:30:20 +0000
commit682d99fd94354d758c9f8d6f8cc5b1e3997e4489 (patch)
tree20151a12c5907d138a79dddb163c0a942c1e5fe0
parent12ed81e585c4c1093281ffd2e1837f627b12d7a7 (diff)
downloadrt.equinox.bundles-682d99fd94354d758c9f8d6f8cc5b1e3997e4489.tar.gz
rt.equinox.bundles-682d99fd94354d758c9f8d6f8cc5b1e3997e4489.tar.xz
rt.equinox.bundles-682d99fd94354d758c9f8d6f8cc5b1e3997e4489.zip
Also add an escaped @ character in the JavaDoc's example. Change-Id: I974e9cdafc2485705d81309484f23c0ae9338f65 Signed-off-by: Michael Keppler <Michael.Keppler@gmx.de>
-rw-r--r--bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/SubMonitor.java4
1 files changed, 2 insertions, 2 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 77aeb2346..5b72ed2a1 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
@@ -29,7 +29,7 @@ import org.eclipse.core.internal.runtime.TracingOptions;
* <li>It is not necessary to call beginTask() or done() on an instance of SubMonitor.</li>
* <li>SubMonitor has a simpler syntax for creating nested monitors.</li>
* <li>SubMonitor is more efficient for deep recursion chains.</li>
- * <li>SubMonitor has a setWorkRemining method that allows the remaining space on the monitor to be
+ * <li>SubMonitor has a setWorkRemaining method that allows the remaining space on the monitor to be
* redistributed without reporting any work.</li>
* <li>SubMonitor protects the caller from common progress reporting bugs in a called method. For example,
* if a called method fails to call done() on the given monitor or fails to consume all the ticks on
@@ -57,7 +57,7 @@ import org.eclipse.core.internal.runtime.TracingOptions;
* necessary to call <code>monitor.done()</code>. The JavaDoc contract makes this the responsibility of the caller.</p>
*
* <pre>
- * // param monitor the progress monitor to use for reporting progress to the user. It is the caller's responsibility
+ * // {@literal @}param monitor the progress monitor to use for reporting progress to the user. It is the caller's responsibility
* // to call done() on the given monitor. Accepts <code>null</code>, indicating that no progress should be
* // reported and that the operation cannot be cancelled.
* //

Back to the top