diff --git a/core/src/com/cloud/agent/api/routing/SetFirewallRulesCommand.java b/core/src/com/cloud/agent/api/routing/SetFirewallRulesCommand.java index e0305453068..1f8d4cfd188 100644 --- a/core/src/com/cloud/agent/api/routing/SetFirewallRulesCommand.java +++ b/core/src/com/cloud/agent/api/routing/SetFirewallRulesCommand.java @@ -77,7 +77,7 @@ public class SetFirewallRulesCommand extends NetworkElementCommand { if (cidr == null || cidr.isEmpty()) { sb.append("0.0.0.0/0"); } else { - Boolean firstEntry = true; + boolean firstEntry = true; for (String tag : cidr) { if (!firstEntry) sb.append("-");