OPNFLWPLUG-1032: Neon-MRI: Bump odlparent, yangtools, mdsal
[openflowplugin.git] / applications / forwardingrules-sync / src / main / java / org / opendaylight / openflowplugin / applications / frsync / impl / strategy / FlowForwarder.java
index 3381b0ac2cc6212a9edf02da5f1b40610148f370..e97d83587cfcb5ebc1cbbb386ce75b1759b72bee 100644 (file)
@@ -56,7 +56,7 @@ public class FlowForwarder implements ForwardingRulesCommitter<Flow, AddFlowOutp
         LOG.trace("Forwarding Flow REMOVE request Tbl id, node Id {} {}",
                 identifier, nodeIdent);
 
-        final TableKey tableKey = identifier.firstKeyOf(Table.class, TableKey.class);
+        final TableKey tableKey = identifier.firstKeyOf(Table.class);
         if (tableIdValidationPrecondition(tableKey, removeDataObj)) {
             final RemoveFlowInputBuilder builder = new RemoveFlowInputBuilder(removeDataObj);
             builder.setFlowRef(new FlowRef(identifier));
@@ -81,7 +81,7 @@ public class FlowForwarder implements ForwardingRulesCommitter<Flow, AddFlowOutp
                 identifier, nodeIdent, update);
 
         final Future<RpcResult<UpdateFlowOutput>> output;
-        final TableKey tableKey = identifier.firstKeyOf(Table.class, TableKey.class);
+        final TableKey tableKey = identifier.firstKeyOf(Table.class);
         if (tableIdValidationPrecondition(tableKey, update)) {
             final UpdateFlowInputBuilder builder = new UpdateFlowInputBuilder();
 
@@ -110,7 +110,7 @@ public class FlowForwarder implements ForwardingRulesCommitter<Flow, AddFlowOutp
                 identifier, nodeIdent, addDataObj);
 
         final Future<RpcResult<AddFlowOutput>> output;
-        final TableKey tableKey = identifier.firstKeyOf(Table.class, TableKey.class);
+        final TableKey tableKey = identifier.firstKeyOf(Table.class);
         if (tableIdValidationPrecondition(tableKey, addDataObj)) {
             final AddFlowInputBuilder builder = new AddFlowInputBuilder(addDataObj);