Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-02-18 21:00:46 +0000
committerAlexander Kurtakov2019-02-18 21:00:46 +0000
commit987fdbd852a07d39d6e8a4318c0a5de91a0248a1 (patch)
treef927d249223388c98a76e61fda8290f32ae34bb1
parent026647a02a2830b6ea2457b6d4b122cae81422d1 (diff)
downloadrt.equinox.bundles-987fdbd852a07d39d6e8a4318c0a5de91a0248a1.tar.gz
rt.equinox.bundles-987fdbd852a07d39d6e8a4318c0a5de91a0248a1.tar.xz
rt.equinox.bundles-987fdbd852a07d39d6e8a4318c0a5de91a0248a1.zip
After fixing majority of Xdoclint:html issues there are warnings even with Xdoclint:none. Change-Id: I4fe8a5c3a9e7ace9c0189d185a60ab3e671f5d9a Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/SubMonitor.java6
-rw-r--r--bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/runtime/preferences/IPreferenceFilter.java4
-rw-r--r--bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IConfigurationElement.java4
3 files changed, 7 insertions, 7 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 92ca4ca66..c4cfd42e1 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
@@ -730,7 +730,7 @@ public final class SubMonitor implements IProgressMonitorWithBlocking {
* void myMethod(IProgressMonitor parent) {
* SubMonitor progress = SubMonitor.convert(parent, 100);
*
- * for (int i = 0; i < 100; i++) {
+ * for (int i = 0; i &lt; 100; i++) {
* // Creating the next child monitor will clean up the previous one,
* // causing progress to be reported smoothly even if we don't do anything
* // with the monitors we create
@@ -859,7 +859,7 @@ public final class SubMonitor implements IProgressMonitorWithBlocking {
* void myMethod(IProgressMonitor parent) {
* SubMonitor progress = SubMonitor.convert(parent, 100);
*
- * for (int i = 0; i < 100; i++) {
+ * for (int i = 0; i &lt; 100; i++) {
* // Creating the next child monitor will clean up the previous one,
* // causing progress to be reported smoothly even if we don't do anything
* // with the monitors we create
@@ -930,7 +930,7 @@ public final class SubMonitor implements IProgressMonitorWithBlocking {
* void myMethod(IProgressMonitor parent) {
* SubMonitor progress = SubMonitor.convert(parent, 100);
*
- * for (int i = 0; i < 100; i++) {
+ * for (int i = 0; i &lt; 100; i++) {
* // Creating the next child monitor will clean up the previous one,
* // causing progress to be reported smoothly even if we don't do anything
* // with the monitors we create
diff --git a/bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/runtime/preferences/IPreferenceFilter.java b/bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/runtime/preferences/IPreferenceFilter.java
index 9254f4af1..649e61c92 100644
--- a/bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/runtime/preferences/IPreferenceFilter.java
+++ b/bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/runtime/preferences/IPreferenceFilter.java
@@ -66,8 +66,8 @@ public interface IPreferenceFilter {
* For example:
* </p>
* <pre>
- * "org.eclipse.core.resources" -> null
- * "org.eclipse.ui" -> new PreferenceFilterEntry[] {
+ * "org.eclipse.core.resources" -&gt; null
+ * "org.eclipse.ui" -&gt; new PreferenceFilterEntry[] {
* new PreferenceFilterEntry("DEFAULT_PERSPECTIVE_LOCATION"),
* new PreferenceFilterEntry("SHOW_INTRO_ON_STARTUP")}
* </pre>
diff --git a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IConfigurationElement.java b/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IConfigurationElement.java
index 9114c194c..bd1387074 100644
--- a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IConfigurationElement.java
+++ b/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IConfigurationElement.java
@@ -189,8 +189,8 @@ public interface IConfigurationElement {
* For example, the configuration markup</p>
* <pre>
* &lt;view&gt;
- * &nbsp&nbsp&nbsp&nbsp&lt;verticalHint&gt;top&lt;/verticalHint&gt;
- * &nbsp&nbsp&nbsp&nbsp&lt;horizontalHint&gt;left&lt;/horizontalHint&gt;
+ * &lt;verticalHint&gt;top&lt;/verticalHint&gt;
+ * &lt;horizontalHint&gt;left&lt;/horizontalHint&gt;
* &lt;/view&gt;
* </pre>
* <p>

Back to the top