Alona Kaplan has posted comments on this change.

Change subject: findbugs: String comparison is not using equals method
......................................................................


Patch Set 13: (2 inline comments)

....................................................
File 
frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/hosts/AddClusterRM.java
Line 72:         VDSGroup candidate = configureModel.getCandidateCluster();
Line 73:         ClusterModel clusterModel = configureModel.getCluster();
Line 74:         String clusterName = (String) 
clusterModel.getName().getEntity();
Line 75: 
Line 76:         if (candidate == null || (candidate.getname() != null && 
!StringHelper.stringsEqual(candidate.getname(), clusterName))) {
candidate.getname() != null is redundant.
Line 77: 
Line 78:             // Try to find existing cluster with the specified name.
Line 79:             VDSGroup cluster = context.clusterFoundByName;
Line 80: 


....................................................
File 
frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/hosts/AddDataCenterRM.java
Line 78:         StoragePool candidate = 
configureModel.getCandidateDataCenter();
Line 79:         DataCenterModel dataCenterModel = 
configureModel.getDataCenter();
Line 80:         String dataCenterName = (String) 
dataCenterModel.getName().getEntity();
Line 81: 
Line 82:         if (candidate == null || (candidate.getname() != null && 
!StringHelper.stringsEqual(candidate.getname(), dataCenterName))) {
candidate.getname() != null is redundant.
Line 83: 
Line 84:             // Try to find existing data center with the specified 
name.
Line 85:             StoragePool dataCenter = context.dataCenterFoundByName;
Line 86: 


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

Gerrit-MessageType: comment
Gerrit-Change-Id: I740261ed3383e147928505ea53edc19e2996ce69
Gerrit-PatchSet: 13
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Shahar Havivi <[email protected]>
Gerrit-Reviewer: Allon Mureinik <[email protected]>
Gerrit-Reviewer: Alona Kaplan <[email protected]>
Gerrit-Reviewer: Asaf Shakarchi <[email protected]>
Gerrit-Reviewer: Daniel Erez <[email protected]>
Gerrit-Reviewer: Gilad Chaplik <[email protected]>
Gerrit-Reviewer: Oved Ourfali <[email protected]>
Gerrit-Reviewer: Shahar Havivi <[email protected]>
Gerrit-Reviewer: Tal Nisan <[email protected]>
Gerrit-Reviewer: Yair Zaslavsky <[email protected]>
_______________________________________________
Engine-patches mailing list
[email protected]
http://lists.ovirt.org/mailman/listinfo/engine-patches

Reply via email to