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
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.