Javadoc nits.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137696 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2003-10-23 22:27:45 +00:00
parent 5d13513875
commit b2109c1a4b
1 changed files with 3 additions and 5 deletions

View File

@ -104,7 +104,7 @@
* @author Stephen Colebourne
* @author Pete Gieser
* @since 2.0
* @version $Id: ReflectionToStringBuilder.java,v 1.12 2003/10/23 22:25:16 ggregory Exp $
* @version $Id: ReflectionToStringBuilder.java,v 1.13 2003/10/23 22:27:45 ggregory Exp $
*/
public class ReflectionToStringBuilder extends ToStringBuilder {
@ -354,8 +354,6 @@ public static String toString(Object object, ToStringStyle style, boolean output
* <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 @@ public static Object toStringWithStatics(Object object, Class reflectUpToClass)
* @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);
}
/**