dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #10273
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 2827: Simplification in report table
------------------------------------------------------------
revno: 2827
committer: Lars Helge Overland <larshelge@xxxxxxxxx>
branch nick: dhis2
timestamp: Tue 2011-02-08 14:34:57 +0100
message:
Simplification in report table
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 2011-02-08 13:15:54 +0000
+++ dhis-2/dhis-api/src/main/java/org/hisp/dhis/reporttable/ReportTable.java 2011-02-08 13:34:57 +0000
@@ -775,9 +775,7 @@
}
if ( period != null )
{
- String periodName = period.getName() != null ? period.getName() : format.formatPeriod( period );
-
- buffer.append( periodName + SEPARATOR );
+ buffer.append( period.getName() + SEPARATOR );
}
if ( unit != null )
{