Moti Asayag has submitted this change and it was merged.

Change subject: engine: Remove unnecessary if clause
......................................................................


engine: Remove unnecessary if clause

Modified an if-else statement of the following structure:
if (A) {
...
}
else if (!A) {
...
}
To:
if (A) {
...
}
else {
...
}

Change-Id: I1ea9acbf5dce7608660fa7a8055eb4c6f45c2526
Signed-off-by: Arik Hadas <[email protected]>
---
M 
backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/VDSBrokerFrontendImpl.java
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  Moti Asayag: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I1ea9acbf5dce7608660fa7a8055eb4c6f45c2526
Gerrit-PatchSet: 2
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Arik Hadas <[email protected]>
Gerrit-Reviewer: Arik Hadas <[email protected]>
Gerrit-Reviewer: Moti Asayag <[email protected]>
Gerrit-Reviewer: Omer Frenkel <[email protected]>
_______________________________________________
Engine-patches mailing list
[email protected]
http://lists.ovirt.org/mailman/listinfo/engine-patches

Reply via email to