dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #27386
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 13632: remove deprecated properties on Form
------------------------------------------------------------
revno: 13632
committer: Morten Olav Hansen <mortenoh@xxxxxxxxx>
branch nick: dhis2
timestamp: Tue 2014-01-07 19:39:51 +0100
message:
remove deprecated properties on Form
modified:
dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/api/webdomain/form/Form.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-api/src/main/java/org/hisp/dhis/api/webdomain/form/Form.java'
--- dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/api/webdomain/form/Form.java 2013-08-23 16:00:30 +0000
+++ dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/api/webdomain/form/Form.java 2014-01-07 18:39:51 +0000
@@ -44,12 +44,6 @@
{
private String label;
- @Deprecated
- private String periodType;
-
- @Deprecated
- private Boolean allowFuturePeriods;
-
private List<Group> groups = new ArrayList<Group>();
private Map<String, Object> options = new HashMap<String, Object>();
@@ -96,9 +90,7 @@
{
return "Form{" +
"label='" + label + '\'' +
- ", periodType='" + periodType + '\'' +
", groups=" + groups +
- ", allowFuturePeriods=" + allowFuturePeriods +
'}';
}
}