You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by bu...@apache.org on 2004/06/01 11:31:05 UTC

DO NOT REPLY [Bug 29317] New: - Bug in ExpressionTableColumnModel.class

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=29317>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=29317

Bug in ExpressionTableColumnModel.class

           Summary: Bug in ExpressionTableColumnModel.class
           Product: Tapestry
           Version: 3.0
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Contrib
        AssignedTo: tapestry-dev@jakarta.apache.org
        ReportedBy: karel.miarka@issa.cz


In org.apache.tapestry.contrib.table.model.ognl.ExpressionTableColumnModel.java 
at line 128 is used
bSorted = Boolean.getBoolean(objTempValue.toString());

But the function Boolean.getBoolean() is unfortunately not doing what is 
supposed here (see the javadoc).

There should be instead:
bSorted = new Boolean(objTempValue.toString());

TIA,
Karel

---------------------------------------------------------------------
To unsubscribe, e-mail: tapestry-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tapestry-dev-help@jakarta.apache.org