Remove unused parameters
[netvirt.git] / aclservice / impl / src / main / java / org / opendaylight / netvirt / aclservice / utils / AclServiceUtils.java
index 4f8b7c5a68a316861d5bda4b7ea8c4d5114846a1..00fe3e6354921b8b4bf2b462b22a850c42c8d029 100644 (file)
@@ -1027,8 +1027,7 @@ public final class AclServiceUtils {
         deleteIdPool(AclConstants.ACL_TAG_POOL_NAME);
     }
 
-    public static List<? extends MatchInfoBase> buildIpAndSrcServiceMatch(Integer aclTag, AllowedAddressPairs aap,
-            DataBroker dataBroker) {
+    public static List<? extends MatchInfoBase> buildIpAndSrcServiceMatch(Integer aclTag, AllowedAddressPairs aap) {
         List<MatchInfoBase> flowMatches = new ArrayList<>();
         flowMatches.add(buildRemoteAclTagMetadataMatch(aclTag));
         if (aap.getIpAddress().getIpAddress() != null) {
@@ -1061,8 +1060,7 @@ public final class AclServiceUtils {
         return flowMatches;
     }
 
-    public static List<? extends MatchInfoBase> buildIpAndDstServiceMatch(Integer aclTag, AllowedAddressPairs aap,
-            DataBroker dataBroker) {
+    public static List<? extends MatchInfoBase> buildIpAndDstServiceMatch(Integer aclTag, AllowedAddressPairs aap) {
         List<MatchInfoBase> flowMatches = new ArrayList<>();
         flowMatches.add(buildRemoteAclTagMetadataMatch(aclTag));