dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #02135
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 726: Removed use of String.isEmpty
------------------------------------------------------------
revno: 726
committer: Lars Helge Oeverland larshelge@xxxxxxxxx
branch nick: trunk
timestamp: Tue 2009-09-15 14:54:35 +0200
message:
Removed use of String.isEmpty
modified:
dhis-2/dhis-web/dhis-web-excel-reporting/src/main/java/org/hisp/dhis/reportexcel/importing/action/ImportDataAction.java
dhis-2/dhis-web/dhis-web-excel-reporting/src/main/java/org/hisp/dhis/reportexcel/importing/action/ViewDataAction.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/importing/action/ImportDataAction.java'
--- dhis-2/dhis-web/dhis-web-excel-reporting/src/main/java/org/hisp/dhis/reportexcel/importing/action/ImportDataAction.java 2009-09-15 04:00:03 +0000
+++ dhis-2/dhis-web/dhis-web-excel-reporting/src/main/java/org/hisp/dhis/reportexcel/importing/action/ImportDataAction.java 2009-09-15 12:54:35 +0000
@@ -199,7 +199,7 @@
String value = ExcelUtils.readValue( reportItem.getRow(), reportItem.getColumn(), sheet );
- if ( !value.isEmpty() )
+ if ( value.length() > 0 )
{
Operand operand = expressionService.getOperandsInExpression( reportItem.getExpression() )
.iterator().next();
=== modified file 'dhis-2/dhis-web/dhis-web-excel-reporting/src/main/java/org/hisp/dhis/reportexcel/importing/action/ViewDataAction.java'
--- dhis-2/dhis-web/dhis-web-excel-reporting/src/main/java/org/hisp/dhis/reportexcel/importing/action/ViewDataAction.java 2009-09-15 04:00:03 +0000
+++ dhis-2/dhis-web/dhis-web-excel-reporting/src/main/java/org/hisp/dhis/reportexcel/importing/action/ViewDataAction.java 2009-09-15 12:54:35 +0000
@@ -56,6 +56,7 @@
// --------------------------------------------------------------------
// Dependencies
// --------------------------------------------------------------------
+
private ReportExcelService reportExcelService;
public void setReportExcelService( ReportExcelService reportExcelService )
@@ -115,7 +116,7 @@
{
String value = ExcelUtils.readValue( reportItem.getRow(), reportItem.getColumn(), sheet );
- if ( !value.isEmpty() )
+ if ( value.length() > 0 )
{
ReportExcelItemValue reportItemvalue = new ReportExcelItemValue( reportItem, value );