2009/3/24 Ville Virtanen <ville.virta...@cerion.fi>:
>
> Also the line
>
> writer.write(""+value);
>
> could be to blame?
>
> try something like
>
> if(value == null) {
>  writer.write("null");
> } else if (value.booleanValue() == true) {
>  writer.write("true");
> } else {
>  writer.write("false");
> }
>
Your code gives the same result as ""+value and String.valueOf(value)
(as suggests Thiago). It doesn't matter. And that's not the point.

> If it still does not work I suggest that you create JIRA issue and attach
> .tml and .java files that replicate this with explanation.

Yes. I'll do it.

Thanks a lot.

Lukasz

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to