mirror of https://github.com/apache/cloudstack.git
Fix findbugs warning in PaloAltoResource.java Unnecessary boxing/unboxing of primitive value
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com> This closes #427
This commit is contained in:
parent
1494487f72
commit
6f330f7ab6
|
|
@ -1612,7 +1612,7 @@ public class PaloAltoResource implements ServerResource {
|
|||
}
|
||||
|
||||
private String getPrivateSubnet(String vlan) throws ExecutionException {
|
||||
String _interfaceName = genPrivateInterfaceName(Long.valueOf(vlan).longValue());
|
||||
String _interfaceName = genPrivateInterfaceName(Long.parseLong(vlan));
|
||||
Map<String, String> params = new HashMap<String, String>();
|
||||
params.put("type", "config");
|
||||
params.put("action", "get");
|
||||
|
|
|
|||
Loading…
Reference in New Issue