dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #34741
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 17817: Approvals: make code more concise (no change in logic.)
------------------------------------------------------------
revno: 17817
committer: jimgrace@xxxxxxxxx
branch nick: dhis2
timestamp: Sun 2014-12-28 19:26:56 -0500
message:
Approvals: make code more concise (no change in logic.)
modified:
dhis-2/dhis-services/dhis-service-core/src/main/java/org/hisp/dhis/dataapproval/DefaultDataApprovalLevelService.java
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-services/dhis-service-core/src/main/java/org/hisp/dhis/dataapproval/DefaultDataApprovalLevelService.java'
--- dhis-2/dhis-services/dhis-service-core/src/main/java/org/hisp/dhis/dataapproval/DefaultDataApprovalLevelService.java 2014-12-29 00:23:53 +0000
+++ dhis-2/dhis-services/dhis-service-core/src/main/java/org/hisp/dhis/dataapproval/DefaultDataApprovalLevelService.java 2014-12-29 00:26:56 +0000
@@ -296,13 +296,8 @@
// Test using assignedAtLevel and approvableAtLevel values from the previous (higher) level.
- Boolean addBecauseOfPreviousLevel = false;
-
- if ( canReadThisLevel && ( approvableAtLevel // Approve at previous higher level implies unapprove at current level.
- || ( assignedAtLevel && mayAcceptAtLowerLevels ) ) ) // Assigned at previous level and mayAcceptAtLowerLevels means may accept here.
- {
- addBecauseOfPreviousLevel = true;
- }
+ Boolean addBecauseOfPreviousLevel = canReadThisLevel && ( approvableAtLevel // Approve at previous higher level implies unapprove at current level.
+ || ( assignedAtLevel && mayAcceptAtLowerLevels ) ); // Assigned at previous level and mayAcceptAtLowerLevels means may accept here.
if ( assignedAtLevel && mayApproveAtLowerLevels )
{