remove text describing passing a null value for a char parameter

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@632061 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Matthew Jason Benson 2008-02-28 17:15:55 +00:00
parent 60e5d4933c
commit be5119c17d
1 changed files with 1 additions and 3 deletions

View File

@ -2125,13 +2125,11 @@ public class StringUtils {
* StringUtils.split("a.b.c", '.') = ["a", "b", "c"] * StringUtils.split("a.b.c", '.') = ["a", "b", "c"]
* StringUtils.split("a..b.c", '.') = ["a", "b", "c"] * StringUtils.split("a..b.c", '.') = ["a", "b", "c"]
* StringUtils.split("a:b:c", '.') = ["a:b:c"] * StringUtils.split("a:b:c", '.') = ["a:b:c"]
* StringUtils.split("a\tb\nc", null) = ["a", "b", "c"]
* StringUtils.split("a b c", ' ') = ["a", "b", "c"] * StringUtils.split("a b c", ' ') = ["a", "b", "c"]
* </pre> * </pre>
* *
* @param str the String to parse, may be null * @param str the String to parse, may be null
* @param separatorChar the character used as the delimiter, * @param separatorChar the character used as the delimiter
* <code>null</code> splits on whitespace
* @return an array of parsed Strings, <code>null</code> if null String input * @return an array of parsed Strings, <code>null</code> if null String input
* @since 2.0 * @since 2.0
*/ */