dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #27814
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 13856: csd: removed check for code != null in orgUnitGroup loop, now exposes all groups
------------------------------------------------------------
revno: 13856
committer: Morten Olav Hansen <mortenoh@xxxxxxxxx>
branch nick: dhis2
timestamp: Mon 2014-01-27 14:34:00 +0700
message:
csd: removed check for code != null in orgUnitGroup loop, now exposes all groups
modified:
dhis-2/dhis-web/dhis-web-ohie/src/main/java/org/hisp/dhis/web/ohie/csd/webapi/CsdController.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-web/dhis-web-ohie/src/main/java/org/hisp/dhis/web/ohie/csd/webapi/CsdController.java'
--- dhis-2/dhis-web/dhis-web-ohie/src/main/java/org/hisp/dhis/web/ohie/csd/webapi/CsdController.java 2014-01-27 07:30:28 +0000
+++ dhis-2/dhis-web/dhis-web-ohie/src/main/java/org/hisp/dhis/web/ohie/csd/webapi/CsdController.java 2014-01-27 07:34:00 +0000
@@ -295,11 +295,6 @@
continue;
}
- if ( organisationUnitGroup.getCode() == null )
- {
- continue;
- }
-
CodedType codedType = new CodedType();
codedType.setCode( organisationUnitGroup.getCode() );