Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-02-14 22:51:24 +0000
committerAlexander Kurtakov2019-02-14 22:55:39 +0000
commit578a68df741d6b2ff9b99053b05ae34aa54b7fbd (patch)
tree7c74d8bdaa3fb7615ac7a4a8cf4d87e1f0369f22 /bundles/org.eclipse.osgi/container/src/org/eclipse/osgi
parent7470a9c748a4393d8f0da786eba9a2cab0373a91 (diff)
downloadrt.equinox.framework-578a68df741d6b2ff9b99053b05ae34aa54b7fbd.tar.gz
rt.equinox.framework-578a68df741d6b2ff9b99053b05ae34aa54b7fbd.tar.xz
rt.equinox.framework-578a68df741d6b2ff9b99053b05ae34aa54b7fbd.zip
Bug 543933 - Build javadocs with Java 11I20190215-0055
Fix warnings as catched by Java 11 tool. Change-Id: I7f0625d4674b85f3fa5a9f5e915cdae9310f48bd Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'bundles/org.eclipse.osgi/container/src/org/eclipse/osgi')
-rw-r--r--bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/service/resolver/State.java7
1 files changed, 5 insertions, 2 deletions
diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/service/resolver/State.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/service/resolver/State.java
index 2e9632b79..f58efa436 100644
--- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/service/resolver/State.java
+++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/service/resolver/State.java
@@ -13,7 +13,10 @@
*******************************************************************************/
package org.eclipse.osgi.service.resolver;
-import java.util.*;
+import java.util.Collection;
+import java.util.Dictionary;
+import java.util.List;
+import java.util.Map;
import org.osgi.framework.BundleException;
import org.osgi.framework.Version;
import org.osgi.framework.hooks.resolver.ResolverHookFactory;
@@ -117,7 +120,7 @@ public interface State {
* version. A null value is returned if no such bundle is found in this state.
* A resolved bundle is always preferably returned over an unresolved bundle.
* If multiple bundles with the same resolution state are available, the bundle
- * with the highest version number is returned if the <code>version<code> is
+ * with the highest version number is returned if the <code>version</code> is
* null.
*
* @param symbolicName symbolic name of the bundle to query

Back to the top