Fix javadoc due to method sig change. Spotted by Mike Miller

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137105 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2002-10-30 21:31:13 +00:00
parent 73cfd9787c
commit a8df3d5a93
1 changed files with 4 additions and 4 deletions

View File

@ -79,9 +79,9 @@
*
* public String toString() {
* return new ToStringBuilder(this).
* append(name, "name").
* append(age, "age").
* append(smoker, "smoker").
* append("name", name).
* append("age", age).
* append("smoker", smoker).
* toString();
* }
* }
@ -107,7 +107,7 @@
* passed into the constructor.
*
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a>
* @version $Id: ToStringBuilder.java,v 1.6 2002/10/01 20:03:04 stevencaswell Exp $
* @version $Id: ToStringBuilder.java,v 1.7 2002/10/30 21:31:13 scolebourne Exp $
*/
public class ToStringBuilder {