Drop redundant "public" for interfaces
authorStephen Kitt <skitt@redhat.com>
Mon, 2 Nov 2015 09:39:39 +0000 (10:39 +0100)
committerStephen Kitt <skitt@redhat.com>
Mon, 2 Nov 2015 09:39:39 +0000 (10:39 +0100)
Change-Id: I5761423745aa72adc7434f82e9ed076d842e2ddc
Signed-off-by: Stephen Kitt <skitt@redhat.com>
openstack/net-virt-sfc/impl/src/main/java/org/opendaylight/ovsdb/openstack/netvirt/sfc/openflow13/INetvirtSfcOF13Provider.java

index 02f4471aa71dc35a24f84f6a29678148182b5ece..7cb081733ed6468d1fe6df163131d06c795d446b 100644 (file)
@@ -25,7 +25,7 @@ public interface INetvirtSfcOF13Provider {
      * @param bridge - Service Function Forwarder
      * @param acl - Access list includes rules that need to be installed in a SFF.
      */
-    public void addClassifierRules(Bridge bridge, Acl acl);
+    void addClassifierRules(Bridge bridge, Acl acl);
 
     /**
      * Method removes the OF rules corresponding to rules within ACL
@@ -34,5 +34,5 @@ public interface INetvirtSfcOF13Provider {
      * @param sff - Service Function Forwarder
      * @param acl - Access list includes rules that need to be installed in a SFF.
      */
-    public void removeClassifierRules(Sff sff, Acl acl);
+    void removeClassifierRules(Sff sff, Acl acl);
 }