You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by li...@apache.org on 2013/12/17 10:17:45 UTC

git commit: updated refs/heads/master to 025335a

Updated Branches:
  refs/heads/master 759d484d9 -> 025335a3a


Fixing compile error found by checkstyle


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/025335a3
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/025335a3
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/025335a3

Branch: refs/heads/master
Commit: 025335a3ab3d7ddc95759c3099b4e17c03a59140
Parents: 759d484
Author: Likitha Shetty <li...@citrix.com>
Authored: Tue Dec 17 14:39:58 2013 +0530
Committer: Likitha Shetty <li...@citrix.com>
Committed: Tue Dec 17 14:40:48 2013 +0530

----------------------------------------------------------------------
 vmware-base/src/com/cloud/hypervisor/vmware/util/VmwareClient.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/025335a3/vmware-base/src/com/cloud/hypervisor/vmware/util/VmwareClient.java
----------------------------------------------------------------------
diff --git a/vmware-base/src/com/cloud/hypervisor/vmware/util/VmwareClient.java b/vmware-base/src/com/cloud/hypervisor/vmware/util/VmwareClient.java
index d7aaabc..3c2c81d 100644
--- a/vmware-base/src/com/cloud/hypervisor/vmware/util/VmwareClient.java
+++ b/vmware-base/src/com/cloud/hypervisor/vmware/util/VmwareClient.java
@@ -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;
             }