Fixup Augmentable and Identifiable methods changing
[openflowplugin.git] / openflowplugin / src / main / java / org / opendaylight / openflowplugin / openflow / md / core / sal / convertor / flow / FlowStatsResponseConvertor.java
index 951614ccf7024d85e15459ccc880d7309b450485..b061b9382d8c50f9584b90cbae75d9cf9a4ead6f 100644 (file)
@@ -85,7 +85,7 @@ public class FlowStatsResponseConvertor extends Convertor<List<FlowStats>, List<
 
         InstructionBuilder instBuilder = new InstructionBuilder();
         instBuilder.setInstruction(applyActionsCaseBuilder.build());
-        instBuilder.setKey(new InstructionKey(0));
+        instBuilder.withKey(new InstructionKey(0));
         instBuilder.setOrder(0);
         List<Instruction> salInstructionList = new ArrayList<>();
         salInstructionList.add(instBuilder.build());