mirror of
https://github.com/apache/commons-lang.git
synced 2025-02-08 19:14:52 +00:00
One per line
This commit is contained in:
parent
433700ea80
commit
4b5f1cf57d
@ -7907,7 +7907,8 @@ private static String[] splitWorker(final String str, final char separatorChar,
|
||||
return ArrayUtils.EMPTY_STRING_ARRAY;
|
||||
}
|
||||
final List<String> list = new ArrayList<>();
|
||||
int i = 0, start = 0;
|
||||
int i = 0;
|
||||
int start = 0;
|
||||
boolean match = false;
|
||||
boolean lastMatch = false;
|
||||
while (i < len) {
|
||||
@ -7958,7 +7959,8 @@ private static String[] splitWorker(final String str, final String separatorChar
|
||||
}
|
||||
final List<String> list = new ArrayList<>();
|
||||
int sizePlus1 = 1;
|
||||
int i = 0, start = 0;
|
||||
int i = 0;
|
||||
int start = 0;
|
||||
boolean match = false;
|
||||
boolean lastMatch = false;
|
||||
if (separatorChars == null) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user