mirror of
https://github.com/apache/cloudstack.git
synced 2025-11-02 20:02:29 +01:00
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…
x
Reference in New Issue
Block a user