Fixed error in javadoc.
Submitted by: Christian d'Heureuse


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137836 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Fredrik Westermarck 2004-05-24 20:15:44 +00:00
parent e93f9adf7b
commit aa5c638764

View File

@ -111,7 +111,7 @@
* @author Al Chou
* @author Michael Davey
* @since 1.0
* @version $Id: StringUtils.java,v 1.129 2004/03/10 23:54:48 scolebourne Exp $
* @version $Id: StringUtils.java,v 1.130 2004/05/24 20:15:44 fredrik Exp $
*/
public class StringUtils {
// Performance testing notes (JDK 1.4, Jul03, scolebourne)
@ -4032,8 +4032,8 @@ public static String defaultString(String str) {
}
/**
* <p>Returns either the passed in String,
* or if the String is <code>null</code>, an empty String ("").</p>
* <p>Returns either the passed in String, or if the String is
* <code>null</code>, the value of <code>defaultStr</code>.</p>
*
* <pre>
* StringUtils.defaultString(null, "null") = "null"