mirror of https://github.com/apache/cloudstack.git
removed redundant autoboxing
Signed-off-by: Laszlo Hornyak <laszlo.hornyak@gmail.com>
This commit is contained in:
parent
5626a340dd
commit
e6e3a20bd6
|
|
@ -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("-");
|
||||
|
|
|
|||
Loading…
Reference in New Issue