Fixup Augmentable and Identifiable methods changing
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / protocol / deserialization / multipart / MultipartReplyFlowTableStatsDeserializer.java
index 01390f887eaca4fdcba5c35458354dc7f39dcb1a..6d567e9251f64ff47f768a02391fb97cd35e0c29 100644 (file)
@@ -39,7 +39,7 @@ public class MultipartReplyFlowTableStatsDeserializer implements OFDeserializer<
             message.skipBytes(PADDING_IN_TABLE_HEADER);
 
             itemBuilder
-                .setKey(new FlowTableAndStatisticsMapKey(itemBuilder.getTableId()))
+                .withKey(new FlowTableAndStatisticsMapKey(itemBuilder.getTableId()))
                 .setActiveFlows(new Counter32(message.readUnsignedInt()));
 
             final byte[] packetsLooked = new byte[EncodeConstants.SIZE_OF_LONG_IN_BYTES];