dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #14684
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 5062: removed children from DataElement
------------------------------------------------------------
revno: 5062
committer: Morten Olav Hansen <mortenoh@xxxxxxxxx>
branch nick: dhis2
timestamp: Mon 2011-10-31 13:14:06 +0100
message:
removed children from DataElement
modified:
dhis-2/dhis-api/src/main/java/org/hisp/dhis/dataelement/DataElement.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/dataelement/DataElement.java'
--- dhis-2/dhis-api/src/main/java/org/hisp/dhis/dataelement/DataElement.java 2011-10-18 13:33:52 +0000
+++ dhis-2/dhis-api/src/main/java/org/hisp/dhis/dataelement/DataElement.java 2011-10-31 12:14:06 +0000
@@ -120,11 +120,6 @@
private String aggregationOperator;
/**
- * A Collection of children DataElements.
- */
- private Set<DataElement> children = new HashSet<DataElement>();
-
- /**
* A combination of categories to capture data.
*/
private DataElementCategoryCombo categoryCombo;
@@ -426,16 +421,6 @@
this.aggregationOperator = aggregationOperator;
}
- public Set<DataElement> getChildren()
- {
- return children;
- }
-
- public void setChildren( Set<DataElement> children )
- {
- this.children = children;
- }
-
public DataElementCategoryCombo getCategoryCombo()
{
return categoryCombo;