removed redundant autoboxing

Signed-off-by: Laszlo Hornyak <laszlo.hornyak@gmail.com>
This commit is contained in:
Laszlo Hornyak 2015-02-25 20:58:25 +01:00
parent 5626a340dd
commit e6e3a20bd6
1 changed files with 1 additions and 1 deletions

View File

@ -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("-");