Fixup Augmentable and Identifiable methods changing
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / protocol / deserialization / instruction / AbstractActionInstructionDeserializer.java
index 4bf20b8d9b747a7fb226582e4680d421f8e6ab34..17bd7b38b3cdbd09985cd14aae590530daa41cbf 100644 (file)
@@ -67,7 +67,7 @@ public abstract class AbstractActionInstructionDeserializer extends AbstractInst
 
             while ((message.readerIndex() - startIndex) < instrLength) {
                 actions.add(new ActionBuilder()
-                        .setKey(new ActionKey(offset))
+                        .withKey(new ActionKey(offset))
                         .setOrder(offset)
                         .setAction(ActionUtil
                                 .readAction(EncodeConstants.OF13_VERSION_ID, message, registry, actionPath))