Minor model refactor
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / deserialization / factories / OF10StatsReplyMessageFactory.java
index 94361a92bdb0600a904155ce684fa7c98edf60eb..a78d464394d7f7d2925423dff298c1104fdb20eb 100644 (file)
@@ -168,7 +168,7 @@ public class OF10StatsReplyMessageFactory implements OFDeserializer<MultipartRep
             byte[] byteCount = new byte[EncodeConstants.SIZE_OF_LONG_IN_BYTES];
             input.readBytes(byteCount);
             flowStatsBuilder.setByteCount(new BigInteger(1, byteCount));
-            flowStatsBuilder.setActionsList(OF10ActionsDeserializer
+            flowStatsBuilder.setAction(OF10ActionsDeserializer
                     .createActionsList(input, length - LENGTH_OF_FLOW_STATS));
             flowStatsList.add(flowStatsBuilder.build());
         }