Fixing compile error found by checkstyle

This commit is contained in:
Likitha Shetty 2013-12-17 14:39:58 +05:30
parent 759d484d9a
commit 025335a3ab
1 changed files with 1 additions and 1 deletions

View File

@ -325,7 +325,7 @@ public class VmwareClient {
// info has a property - state for state of the task
Object[] result = waitForValues(task, new String[] { "info.state", "info.error" }, new String[] { "state" }, new Object[][] { new Object[] {
TaskInfoState.SUCCESS, TaskInfoState.ERROR } });
if (result[0].equals(TaskInfoState.SUCCESS)) {
retVal = true;
}