summaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/osgi/OsgiWrapper.java
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2019-11-04 15:58:41 +0100
committerGitHub <noreply@github.com>2019-11-04 15:58:41 +0100
commit4fa47f1d9a2996ecf457ae24572a0dfe3c557379 (patch)
tree0e489ba548abedeea9676a0aed8ad64ec7443af4 /container-core/src/main/java/com/yahoo/osgi/OsgiWrapper.java
parentb7d03730d1e7cb0d77910a3fe8d7073e379e8b9c (diff)
parent2ef1e922a1d845b3cd79e9fb329925e7e9896919 (diff)
Merge pull request #11205 from vespa-engine/revert-11142-gjoranv/allow-duplicate-bundles_rebased
Revert "Gjoranv/allow duplicate bundles"
Diffstat (limited to 'container-core/src/main/java/com/yahoo/osgi/OsgiWrapper.java')
-rw-r--r--container-core/src/main/java/com/yahoo/osgi/OsgiWrapper.java16
1 files changed, 0 insertions, 16 deletions
diff --git a/container-core/src/main/java/com/yahoo/osgi/OsgiWrapper.java b/container-core/src/main/java/com/yahoo/osgi/OsgiWrapper.java
deleted file mode 100644
index 58e19e52ee3..00000000000
--- a/container-core/src/main/java/com/yahoo/osgi/OsgiWrapper.java
+++ /dev/null
@@ -1,16 +0,0 @@
-package com.yahoo.osgi;
-
-import com.yahoo.component.ComponentSpecification;
-import org.osgi.framework.Bundle;
-
-/**
- * @author gjoranv
- */
-public interface OsgiWrapper extends Osgi, com.yahoo.container.di.Osgi {
-
- @Override
- default Bundle getBundle(ComponentSpecification bundleId) {
- return null;
- }
-
-}