Avoid Javadoc warning with Standard Doclet version 1.4.2.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137503 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2003-07-26 00:45:27 +00:00
parent 77f8c186f2
commit da00e1d426
2 changed files with 6 additions and 6 deletions

View File

@ -68,7 +68,7 @@
* @author Stephen Colebourne
* @author <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a>
* @since 1.0
* @version $Id: ObjectUtils.java,v 1.14 2003/07/25 22:37:58 scolebourne Exp $
* @version $Id: ObjectUtils.java,v 1.15 2003/07/26 00:45:27 ggregory Exp $
*/
public class ObjectUtils {
@ -208,7 +208,7 @@ public static StringBuffer appendIdentityToString(StringBuffer buffer, Object ob
//-----------------------------------------------------------------------
/**
* <p>Gets the <code>toString</code> of an <code>Object</code> returning
* an empty string ("") if <code>null</code> input,</p>
* an empty string ("") if <code>null</code> input.</p>
*
* <pre>
* ObjectUtils.toString(null) = ""
@ -218,7 +218,6 @@ public static StringBuffer appendIdentityToString(StringBuffer buffer, Object ob
* </pre>
*
* @param obj the Object to <code>toString</code>, may be null
* @param nullStr the String to return if <code>null</code> input, may be null
* @return the passed in Object's toString, or nullStr if <code>null</code> input
*/
public static String toString(Object obj) {
@ -227,7 +226,7 @@ public static String toString(Object obj) {
/**
* <p>Gets the <code>toString</code> of an <code>Object</code> returning
* an empty string ("") if <code>null</code> input,</p>
* an empty string ("") if <code>null</code> input.</p>
*
* <pre>
* ObjectUtils.toString(null, null) = null

View File

@ -79,7 +79,7 @@
* @author Stephen Colebourne
* @author <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a>
* @since 1.0
* @version $Id: ExceptionUtils.java,v 1.27 2003/07/25 23:06:58 scolebourne Exp $
* @version $Id: ExceptionUtils.java,v 1.28 2003/07/26 00:43:08 ggregory Exp $
*/
public class ExceptionUtils {
@ -378,7 +378,8 @@ public static void printRootCauseStackTrace(Throwable t, PrintStream stream) {
}
/**
* <p>Equivalent to <code>printRootCauseStackTrace(t, System.err);</code></p>
* <p>Calls <code>printRootCauseStackTraceprintRootCauseStackTrace</code>.</p>
* Same as: <pre>printRootCauseStackTrace(t, System.err);</pre>
*
* @see #printRootCauseStackTrace(Throwable,PrintWriter)
*/