summaryrefslogtreecommitdiffstats
path: root/container-disc
diff options
context:
space:
mode:
authorgjoranv <gjoranv@gmail.com>2017-04-25 11:40:24 +0200
committerGitHub <noreply@github.com>2017-04-25 11:40:24 +0200
commit6e5e042d7992d7bcb924ac6e4c1d39abe1763d05 (patch)
treead5108e6e93ef3c77995e55f8abb4f75d434413e /container-disc
parent646c9cd19bd29a9a6d69adf03f2aebb089869550 (diff)
Revert "Balder/latest felix 4"
Diffstat (limited to 'container-disc')
-rw-r--r--container-disc/src/main/java/com/yahoo/container/jdisc/RestrictedBundleContext.java16
1 files changed, 0 insertions, 16 deletions
diff --git a/container-disc/src/main/java/com/yahoo/container/jdisc/RestrictedBundleContext.java b/container-disc/src/main/java/com/yahoo/container/jdisc/RestrictedBundleContext.java
index 3f61442e7e4..8fad9a48376 100644
--- a/container-disc/src/main/java/com/yahoo/container/jdisc/RestrictedBundleContext.java
+++ b/container-disc/src/main/java/com/yahoo/container/jdisc/RestrictedBundleContext.java
@@ -45,22 +45,6 @@ public class RestrictedBundleContext implements BundleContext {
}
@Override
- public <S> ServiceObjects<S> getServiceObjects(ServiceReference<S> serviceReference) {
- if (wrapped == null) {
- return null;
- }
- return wrapped.getServiceObjects(serviceReference);
- }
-
- @Override
- public <S> ServiceRegistration<S> registerService(Class<S> aClass, ServiceFactory<S> serviceFactory, Dictionary<String, ?> dictionary) {
- if (wrapped == null) {
- return null;
- }
- return wrapped.registerService(aClass, serviceFactory, dictionary);
- }
-
- @Override
public ServiceReference<?>[] getServiceReferences(String localHostname, String localHostname2) throws InvalidSyntaxException {
if (wrapped == null) {
return new ServiceReference<?>[0];