Skip to content

Commit e6e3a20

Browse files
committed
removed redundant autoboxing
Signed-off-by: Laszlo Hornyak <[email protected]>
1 parent 5626a34 commit e6e3a20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/com/cloud/agent/api/routing/SetFirewallRulesCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public String[][] generateFwRules() {
7777
if (cidr == null || cidr.isEmpty()) {
7878
sb.append("0.0.0.0/0");
7979
} else {
80-
Boolean firstEntry = true;
80+
boolean firstEntry = true;
8181
for (String tag : cidr) {
8282
if (!firstEntry)
8383
sb.append("-");

0 commit comments

Comments
 (0)