Add curly braces to for and if statements.
[controller.git] / opendaylight / protocol_plugins / openflow / src / main / java / org / opendaylight / controller / protocol_plugin / openflow / vendorextension / v6extension / V6FlowMod.java
index f7edd30b01cd3424cda925cf29b05ff747020096..73cdd9898fdf88aa29d981d1b7735434c47c390d 100644 (file)
@@ -218,8 +218,9 @@ public class V6FlowMod extends OFVendor implements Cloneable {
             V6FlowMod v6flowMod = (V6FlowMod) super.clone();
             v6flowMod.setMatch(neoMatch);
             List<OFAction> neoActions = new LinkedList<OFAction>();
-            for (OFAction action : this.actions)
+            for (OFAction action : this.actions) {
                 neoActions.add((OFAction) action.clone());
+            }
             v6flowMod.setActions(neoActions);
             return v6flowMod;
         } catch (CloneNotSupportedException e) {