User: kz Date: 2008-05-05 15:13:21+0000 Modified: dba/reportdesign/java/com/sun/star/report/pentaho/parser/rpt/FormattedTextReadHandler.java
Log: INTEGRATION: CWS dba30beta (1.4.6); FILE MERGED 2008/04/22 10:30:31 oj 1.4.6.1: #i88503# merge changes from rptchart02 File Changes: Directory: /dba/reportdesign/java/com/sun/star/report/pentaho/parser/rpt/ ========================================================================= File [changed]: FormattedTextReadHandler.java Url: http://dba.openoffice.org/source/browse/dba/reportdesign/java/com/sun/star/report/pentaho/parser/rpt/FormattedTextReadHandler.java?r1=1.4&r2=1.5 Delta lines: +2 -4 ------------------- --- FormattedTextReadHandler.java 2008-04-10 17:47:55+0000 1.4 +++ FormattedTextReadHandler.java 2008-05-05 15:13:18+0000 1.5 @@ -31,10 +31,8 @@ import com.sun.star.report.pentaho.model.FormattedTextElement; import com.sun.star.report.pentaho.parser.ElementReadHandler; -import com.sun.star.report.pentaho.parser.StarXmlFactoryModule; import com.sun.star.report.pentaho.OfficeNamespaces; import org.jfree.report.expressions.FormulaExpression; -import org.jfree.report.structure.Node; import org.jfree.report.structure.Element; import org.jfree.xmlns.parser.XmlReadHandler; import org.jfree.xmlns.parser.IgnoreAnyChildReadHandler; @@ -49,7 +47,7 @@ public class FormattedTextReadHandler extends ElementReadHandler { - private FormattedTextElement element; + private final FormattedTextElement element; public FormattedTextReadHandler() { @@ -66,7 +64,7 @@ { super.startParsing(attrs); - String formula = attrs.getValue(OfficeNamespaces.OOREPORT_NS, "formula"); + final String formula = attrs.getValue(OfficeNamespaces.OOREPORT_NS, "formula"); if (formula != null) { final FormulaExpression valueExpression = new FormulaExpression(); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
