From e6e3a20bd6ef95d40af2018c74430a0b5f77166b Mon Sep 17 00:00:00 2001 From: Laszlo Hornyak Date: Wed, 25 Feb 2015 20:58:25 +0100 Subject: [PATCH] removed redundant autoboxing Signed-off-by: Laszlo Hornyak --- .../com/cloud/agent/api/routing/SetFirewallRulesCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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("-");