ggregory 2003/10/23 15:27:45
Modified: lang/src/java/org/apache/commons/lang/builder
ReflectionToStringBuilder.java
Log:
Javadoc nits.
Revision Changes Path
1.13 +3 -5
jakarta-commons/lang/src/java/org/apache/commons/lang/builder/ReflectionToStringBuilder.java
Index: ReflectionToStringBuilder.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/builder/ReflectionToStringBuilder.java,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ReflectionToStringBuilder.java 23 Oct 2003 22:25:16 -0000 1.12
+++ ReflectionToStringBuilder.java 23 Oct 2003 22:27:45 -0000 1.13
@@ -354,8 +354,6 @@
* <p>The default <code>ToStringStyle</code> is used.</p>
*
* @param object the Object to be output
- * @param reflectUpToClass the superclass to reflect up to (inclusive),
- * may be <code>null</code>
* @return the String result
* @throws IllegalArgumentException if the Object is <code>null</code>
*/
@@ -418,8 +416,8 @@
* @return the String result
* @throws IllegalArgumentException if the Object is <code>null</code>
*/
- public static Object toStringWithStatics(Object object, ToStringStyle
toStringStyle, Class reflectUpToClass) {
- return toString(object, toStringStyle, false, true, reflectUpToClass);
+ public static Object toStringWithStatics(Object object, ToStringStyle style,
Class reflectUpToClass) {
+ return toString(object, style, false, true, reflectUpToClass);
}
/**
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]