X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=restconf%2Frestconf-nb%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Frestconf%2Fnb%2Frfc8040%2Frests%2Fservices%2Fimpl%2FRestconfInvokeOperationsServiceImpl.java;h=5b7011b81d23b1086131644768e5539dfb122728;hb=fbc7ba41ffd206a19489669613adc18fe1e43d48;hp=e877c74a9780987c8513adf7afd7f6d19d452a1b;hpb=ae721eb9a2727c43752faac41e540bbfc62d7f6d;p=netconf.git diff --git a/restconf/restconf-nb/src/main/java/org/opendaylight/restconf/nb/rfc8040/rests/services/impl/RestconfInvokeOperationsServiceImpl.java b/restconf/restconf-nb/src/main/java/org/opendaylight/restconf/nb/rfc8040/rests/services/impl/RestconfInvokeOperationsServiceImpl.java index e877c74a97..5b7011b81d 100644 --- a/restconf/restconf-nb/src/main/java/org/opendaylight/restconf/nb/rfc8040/rests/services/impl/RestconfInvokeOperationsServiceImpl.java +++ b/restconf/restconf-nb/src/main/java/org/opendaylight/restconf/nb/rfc8040/rests/services/impl/RestconfInvokeOperationsServiceImpl.java @@ -30,7 +30,6 @@ import org.opendaylight.mdsal.dom.api.DOMRpcService; import org.opendaylight.mdsal.dom.spi.DefaultDOMRpcResult; import org.opendaylight.restconf.common.context.InstanceIdentifierContext; import org.opendaylight.restconf.common.errors.RestconfDocumentedException; -import org.opendaylight.restconf.nb.rfc8040.handlers.SchemaContextHandler; import org.opendaylight.restconf.nb.rfc8040.legacy.NormalizedNodePayload; import org.opendaylight.restconf.nb.rfc8040.rests.services.api.RestconfInvokeOperationsService; import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.remote.rev140114.CreateDataChangeEventSubscriptionInput; @@ -60,12 +59,9 @@ public class RestconfInvokeOperationsServiceImpl implements RestconfInvokeOperat private static final QNameModule SAL_REMOTE_NAMESPACE = CreateDataChangeEventSubscriptionInput.QNAME.getModule(); private final DOMRpcService rpcService; - private final SchemaContextHandler schemaContextHandler; - public RestconfInvokeOperationsServiceImpl(final DOMRpcService rpcService, - final SchemaContextHandler schemaContextHandler) { + public RestconfInvokeOperationsServiceImpl(final DOMRpcService rpcService) { this.rpcService = requireNonNull(rpcService); - this.schemaContextHandler = requireNonNull(schemaContextHandler); } @Override