findbugs: ignored return value should have been returned down stack

Signed-off-by: Daan Hoogland <daan@onecht.net>

This closes #494
This commit is contained in:
Daan Hoogland 2015-06-19 23:50:45 +02:00
parent 3efe053952
commit 871ba9c521

View File

@ -3903,7 +3903,7 @@ public class VmwareResource implements StoragePoolResource, ServerResource, Vmwa
if (hostInCluster.isHyperHostConnected())
return new Answer(cmd);
else
new Answer(cmd, false, "PingTestCommand failed");
return new Answer(cmd, false, "PingTestCommand failed");
}
}
} catch (Exception e) {