dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #22633
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 10933: Minor
------------------------------------------------------------
revno: 10933
committer: Lars Helge Øverland <larshelge@xxxxxxxxx>
branch nick: dhis2
timestamp: Wed 2013-05-22 13:33:46 +0200
message:
Minor
modified:
dhis-2/dhis-api/src/main/java/org/hisp/dhis/reporttable/ReportTable.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-api/src/main/java/org/hisp/dhis/reporttable/ReportTable.java'
--- dhis-2/dhis-api/src/main/java/org/hisp/dhis/reporttable/ReportTable.java 2013-05-19 18:49:47 +0000
+++ dhis-2/dhis-api/src/main/java/org/hisp/dhis/reporttable/ReportTable.java 2013-05-22 11:33:46 +0000
@@ -304,11 +304,6 @@
*/
private List<DataElementCategoryOptionCombo> categoryOptionCombos = new ArrayList<DataElementCategoryOptionCombo>();
- /**
- * Map linking organisation unit uids and parent graphs.
- */
- private Map<String, String> parentGraphMap = new HashMap<String, String>();
-
// -------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------
@@ -1004,18 +999,6 @@
this.categoryOptionCombos = categoryOptionCombos;
}
- @JsonProperty
- @JsonView({ DetailedView.class, ExportView.class })
- public Map<String, String> getParentGraphMap()
- {
- return parentGraphMap;
- }
-
- public void setParentGraphMap( Map<String, String> parentGraphMap )
- {
- this.parentGraphMap = parentGraphMap;
- }
-
@Override
public void mergeWith( IdentifiableObject other )
{