From 1be40d69265096597f8420f64596a6da9ec7d5dc Mon Sep 17 00:00:00 2001 From: Hugo Trippaers Date: Fri, 24 Jan 2014 11:58:53 +0000 Subject: [PATCH] Findbugs finding : Incorrect use of equality (cherry picked from commit 10cc5645e8b9713bc7c86d543413d396ce203cc6) (cherry picked from commit f18c5a1910b6370585a1d61638b8310c3ecba5ef) Signed-off-by: Animesh Chaturvedi --- .../src/com/cloud/hypervisor/vmware/VmwareServerDiscoverer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/VmwareServerDiscoverer.java b/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/VmwareServerDiscoverer.java index 89bbeb93bb9..54e98151272 100755 --- a/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/VmwareServerDiscoverer.java +++ b/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/VmwareServerDiscoverer.java @@ -168,7 +168,7 @@ public class VmwareServerDiscoverer extends DiscovererBase implements _clusterDetailsDao.persist(clusterId, clusterDetails); } String updatedInventoryPath = validateCluster(url, vmwareDc); - if (url.getPath() != updatedInventoryPath) { + if (!url.getPath().equals(updatedInventoryPath)) { // If url from API doesn't specify DC then update url in database with DC associated with this zone. clusterDetails.put("url", url.getScheme() + "://" + url.getHost() + updatedInventoryPath); _clusterDetailsDao.persist(clusterId, clusterDetails);