summaryrefslogtreecommitdiffstats
path: root/jdisc_core
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@oath.com>2020-11-04 19:49:40 +0100
committerGitHub <noreply@github.com>2020-11-04 19:49:40 +0100
commit19f9396e6b60e49c7830d78d504a14c015600f2b (patch)
treee9b48215a89c2170853a3fd16e69b5b70846c8e3 /jdisc_core
parent2c61049b176fbbea20714973bd7a90aaa0bb91de (diff)
parenta72b6152b4a16978db0731872e319af2ae63a0ac (diff)
Merge pull request #15180 from vespa-engine/bratseth/override-in-variant-references
Override in variant references
Diffstat (limited to 'jdisc_core')
-rw-r--r--jdisc_core/src/main/java/com/yahoo/jdisc/core/OsgiLogManager.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/jdisc_core/src/main/java/com/yahoo/jdisc/core/OsgiLogManager.java b/jdisc_core/src/main/java/com/yahoo/jdisc/core/OsgiLogManager.java
index 5b0367c5a55..ee1939d9bbe 100644
--- a/jdisc_core/src/main/java/com/yahoo/jdisc/core/OsgiLogManager.java
+++ b/jdisc_core/src/main/java/com/yahoo/jdisc/core/OsgiLogManager.java
@@ -26,12 +26,11 @@ class OsgiLogManager implements LogService {
this.configureLogLevel = configureLogLevel;
}
- @SuppressWarnings("unchecked")
- public void install(final BundleContext osgiContext) {
+ public void install(BundleContext osgiContext) {
if (tracker != null) {
throw new IllegalStateException("OsgiLogManager already installed.");
}
- tracker = new ServiceTracker<>(osgiContext, LogService.class, new ServiceTrackerCustomizer<LogService,LogService>() {
+ tracker = new ServiceTracker<>(osgiContext, LogService.class, new ServiceTrackerCustomizer<>() {
@Override
public LogService addingService(ServiceReference<LogService> reference) {