Martin Peřina has uploaded a new change for review.

Change subject: webadmin: Fix findbugs issue in HostGeneralModel
......................................................................

webadmin: Fix findbugs issue in HostGeneralModel

Fixes findbugs issues in HostGeneralModel introduced in patch
I16254bd36c36ee241280598203464237cf7e00c7

Change-Id: Ie0f0cf94d47c3d5a6a401d9edc70067628c04f80
Signed-off-by: Martin Perina <mper...@redhat.com>
---
M 
frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/hosts/HostGeneralModel.java
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/22/27022/1

diff --git 
a/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/hosts/HostGeneralModel.java
 
b/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/hosts/HostGeneralModel.java
index 8cdb609..6414cd9 100644
--- 
a/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/hosts/HostGeneralModel.java
+++ 
b/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/hosts/HostGeneralModel.java
@@ -638,7 +638,7 @@
 
     public void setKdumpStatus(String value)
     {
-        if (kdumpStatus != value)
+        if (!ObjectUtils.objectsEqual(kdumpStatus, value))
         {
             kdumpStatus = value;
             onPropertyChanged(new PropertyChangedEventArgs("KdumpStatus")); 
//$NON-NLS-1$


-- 
To view, visit http://gerrit.ovirt.org/27022
To unsubscribe, visit http://gerrit.ovirt.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ie0f0cf94d47c3d5a6a401d9edc70067628c04f80
Gerrit-PatchSet: 1
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Martin Peřina <mper...@redhat.com>
_______________________________________________
Engine-patches mailing list
Engine-patches@ovirt.org
http://lists.ovirt.org/mailman/listinfo/engine-patches

Reply via email to