From aa5c6387642bf4867524de5c10040ac89be881d4 Mon Sep 17 00:00:00 2001 From: Fredrik Westermarck Date: Mon, 24 May 2004 20:15:44 +0000 Subject: [PATCH] PR: http://issues.apache.org/bugzilla/show_bug.cgi?id=28468 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 --- src/java/org/apache/commons/lang/StringUtils.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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"