dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #03983
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 1321: Mirror fix.
------------------------------------------------------------
revno: 1321
committer: Tran Chau <tran.hispvietnam@xxxxxxxxx>
branch nick: trunk
timestamp: Thu 2010-01-21 10:59:55 +0700
message:
Mirror fix.
modified:
dhis-2/dhis-web/dhis-web-excel-reporting/src/main/java/org/hisp/dhis/reportexcel/utils/ExcelUtils.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-excel-reporting/src/main/java/org/hisp/dhis/reportexcel/utils/ExcelUtils.java'
--- dhis-2/dhis-web/dhis-web-excel-reporting/src/main/java/org/hisp/dhis/reportexcel/utils/ExcelUtils.java 2010-01-05 07:36:05 +0000
+++ dhis-2/dhis-web/dhis-web-excel-reporting/src/main/java/org/hisp/dhis/reportexcel/utils/ExcelUtils.java 2010-01-21 03:59:55 +0000
@@ -138,7 +138,7 @@
/* POI - Read the value of specified cell */
public static String readValuePOI( int row, int column, org.apache.poi.ss.usermodel.Sheet sheetPOI )
{
- org.apache.poi.ss.usermodel.Cell cellPOI = getCellByPOI( row - 1, column - 1, sheetPOI );
+ org.apache.poi.ss.usermodel.Cell cellPOI = getCellByPOI( row, column, sheetPOI );
String value = "";