=== 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 2011-01-18 14:51:18 +0000 +++ dhis-2/dhis-api/src/main/java/org/hisp/dhis/reporttable/ReportTable.java 2011-01-25 12:07:27 +0000 @@ -30,10 +30,9 @@ import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; +import java.util.LinkedHashMap; import java.util.List; import java.util.Map; -import java.util.SortedMap; -import java.util.TreeMap; import java.util.regex.Matcher; import java.util.regex.Pattern; @@ -295,7 +294,7 @@ * Generated pretty-print names for crosstabulated columns in the report table, * where key is column name and value is pretty column name. */ - private SortedMap prettyCrossTabColumns = new TreeMap(); + private Map prettyCrossTabColumns = new LinkedHashMap(); /** * Generated unique identifiers used to retrieve the corresponding value from the datavalue table. @@ -1340,7 +1339,7 @@ return crossTabColumns; } - public SortedMap getPrettyCrossTabColumns() + public Map getPrettyCrossTabColumns() { return prettyCrossTabColumns; }