Remove ServerFacade.setThreadConfig()
[openflowplugin.git] / openflowjava / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / core / ServerFacade.java
index 67bb0a3d32ea7c0ea9f56df5625c40ef914e384e..6a0fa1ab6c35a23e25ce9e416b1e454c4f7db179 100644 (file)
@@ -7,19 +7,11 @@
  */
 package org.opendaylight.openflowjava.protocol.impl.core;
 
-import org.opendaylight.openflowjava.protocol.api.connection.ThreadConfiguration;
-
 /**
  * Server facade interface.
  *
  * @author mirehak
  */
 public interface ServerFacade extends ShutdownProvider, OnlineProvider, Runnable {
-    /**
-     * Sets thread configuration.
-     *
-     * @param threadConfig desired thread configuration
-     */
-    @Deprecated(since = "0.17.2", forRemoval = true)
-    void setThreadConfig(ThreadConfiguration threadConfig);
+
 }