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:
parent
60e5d4933c
commit
be5119c17d
|
@ -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\tb\nc", null) = ["a", "b", "c"]
|
||||
* StringUtils.split("a b c", ' ') = ["a", "b", "c"]
|
||||
* </pre>
|
||||
*
|
||||
* @param str the String to parse, may be null
|
||||
* @param separatorChar the character used as the delimiter,
|
||||
* <code>null</code> splits on whitespace
|
||||
* @param separatorChar the character used as the delimiter
|
||||
* @return an array of parsed Strings, <code>null</code> if null String input
|
||||
* @since 2.0
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue