[
https://issues.apache.org/jira/browse/LANG-372?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Henri Yandell closed LANG-372.
------------------------------
Resolution: Won't Fix
Marking this as WONTFIX. It's a design bug rather than a code bug, and I don't
see any obvious ways to surgically fix it.
I've also added Bjorn's unit test as a proof of this so if it does change in
the future we can notice (r594387).
> ToStringBuilder: MULTI_LINE_STYLE does not print anything from appendToString
> methods.
> --------------------------------------------------------------------------------------
>
> Key: LANG-372
> URL: https://issues.apache.org/jira/browse/LANG-372
> Project: Commons Lang
> Issue Type: Bug
> Affects Versions: 2.3
> Reporter: Travis Reeder
> Fix For: 2.4
>
> Attachments: LANG-327-test.patch
>
>
> To reproduce, just use the following sample on an object:
> return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
> .appendToString(ob1.toString())
> .appendToString(ob2.toString())
> .append("something", something)
> .toString();
> You won't see the ob1.toString or the ob2.toString
> And this works correctly:
> return new ToStringBuilder(this)
> .appendToString(ob1.toString())
> .appendToString(ob2.toString())
> .append("something", something)
> .toString();
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.