diff --git a/src/java/org/apache/commons/lang/StringUtils.java b/src/java/org/apache/commons/lang/StringUtils.java index 22a8188e1..22a9b32fc 100644 --- a/src/java/org/apache/commons/lang/StringUtils.java +++ b/src/java/org/apache/commons/lang/StringUtils.java @@ -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) { } /** - *

Returns either the passed in String, - * or if the String is null, an empty String ("").

+ *

Returns either the passed in String, or if the String is + * null, the value of defaultStr.

* *
      * StringUtils.defaultString(null, "null")  = "null"