Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-02-15 22:00:33 +0000
committerAlexander Kurtakov2019-02-15 22:42:59 +0000
commitc06dd9982b13af77221de77d68c92de21e6646f5 (patch)
treed6cf75bc89a6f0cfbe391975233bcf8a9a8cf5aa /bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src
parent316302a75a0f962cbb62829bf1781a5047e4b945 (diff)
downloadrt.equinox.p2-c06dd9982b13af77221de77d68c92de21e6646f5.tar.gz
rt.equinox.p2-c06dd9982b13af77221de77d68c92de21e6646f5.tar.xz
rt.equinox.p2-c06dd9982b13af77221de77d68c92de21e6646f5.zip
Fix javadoc warnings catched by Java 11 tool with XDoclint:html. Change-Id: I06b05f4c190658ed8c8d79b1e1d33ac534f1adb3 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src')
-rw-r--r--bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/p2/touchpoint/eclipse/query/OSGiBundleQuery.java2
-rw-r--r--bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/p2/touchpoint/eclipse/query/package.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/p2/touchpoint/eclipse/query/OSGiBundleQuery.java b/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/p2/touchpoint/eclipse/query/OSGiBundleQuery.java
index 3b6447fb1..2c66baba7 100644
--- a/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/p2/touchpoint/eclipse/query/OSGiBundleQuery.java
+++ b/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/p2/touchpoint/eclipse/query/OSGiBundleQuery.java
@@ -34,7 +34,7 @@ public final class OSGiBundleQuery extends ExpressionMatchQuery<IInstallableUnit
/**
* Test if the {@link IInstallableUnit} describes an OSGi bundle.
* @param iu the element being tested.
- * @return <tt>true</tt> if the parameter describes an OSGi bundle.
+ * @return <code>true</code> if the parameter describes an OSGi bundle.
*/
public static boolean isOSGiBundle(IInstallableUnit iu) {
return bundleTest.isMatch(iu);
diff --git a/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/p2/touchpoint/eclipse/query/package.html b/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/p2/touchpoint/eclipse/query/package.html
index 1af2a8419..f3bbe2eaa 100644
--- a/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/p2/touchpoint/eclipse/query/package.html
+++ b/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/p2/touchpoint/eclipse/query/package.html
@@ -13,6 +13,6 @@ This package specifies API for querying and manipulating provisioning metadata t
is specific to OSGi bundles or Eclipse-specific constructs such as features.
<p>
@since 2.0
-<p>
+</p>
</body>
</html>

Back to the top