mirror of https://github.com/apache/cloudstack.git
Fix findbugs DM_BOXED_PRIMITIVE_FOR_PARSING in DeployVMCmd.java Was creating Long to assign to long
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com> This closes #417
This commit is contained in:
parent
89a07084c5
commit
d0a494b71b
|
|
@ -506,7 +506,7 @@ public class DeployVMCmd extends BaseAsyncCreateCustomIdCmd {
|
|||
|
||||
try {
|
||||
if (minIops != null) {
|
||||
lMinIops = Long.valueOf(minIops);
|
||||
lMinIops = Long.parseLong(minIops);
|
||||
}
|
||||
else {
|
||||
lMinIops = 0;
|
||||
|
|
|
|||
Loading…
Reference in New Issue