Remove RpcServiceInvoker.from(Class)
[mdsal.git] / binding / mdsal-binding-dom-adapter / src / main / java / org / opendaylight / mdsal / binding / dom / adapter / invoke / RpcServiceInvoker.java
index 0b8016dbffe66d207fc7d22f959983793065a974..002dc95b1ca76ed17abf3d6c24100256a1e9a63e 100644 (file)
@@ -32,18 +32,6 @@ import org.slf4j.LoggerFactory;
 public abstract class RpcServiceInvoker {
     private static final Logger LOG = LoggerFactory.getLogger(RpcServiceInvoker.class);
 
-    /**
-     * Creates RPCServiceInvoker for specified RpcService type.
-     *
-     * @param type RpcService interface, which was generated from model.
-     * @return Cached instance of {@link RpcServiceInvoker} for supplied RPC type.
-     * @deprecated This method is not used by the adapter and is scheduled for removal.
-     */
-    @Deprecated(forRemoval = true, since = "9.0.3")
-    public static RpcServiceInvoker from(final Class<? extends RpcService> type) {
-        return ClassBasedRpcServiceInvoker.instanceFor(type);
-    }
-
     /**
      * Creates an RPCServiceInvoker for specified QName-&lt;Method mapping.
      *