BUG 2245 - Fixed Redundant Modifier
[openflowjava.git] / openflow-protocol-api / src / main / java / org / opendaylight / openflowjava / protocol / api / connection / SwitchConnectionHandler.java
index 82dd0f0e33517f13d43fe4cebcecf32dba9408ee..c5f26fc1985b2adc2a46dc018a0f3fe89e4f4156 100644 (file)
@@ -21,12 +21,12 @@ public interface SwitchConnectionHandler {
     /**
      * @param connection to switch proving message sending/receiving, connection management
      */
-    public void onSwitchConnected(ConnectionAdapter connection);
+    void onSwitchConnected(ConnectionAdapter connection);
     
     /**
      * @param switchAddress
      * @return true, if connection from switch having given address shell be accepted; false otherwise
      */
-    public boolean accept(InetAddress switchAddress);
+    boolean accept(InetAddress switchAddress);
 
 }