mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
fix code
This commit is contained in:
@@ -74,7 +74,7 @@ public class SplitIterTest {
|
||||
final String str1 = "a, ,,efedsfs, ddf,";
|
||||
|
||||
final SplitIter splitIter = new SplitIter(str1,
|
||||
new StrFinder("e", false),
|
||||
StrFinder.of("e", false),
|
||||
Integer.MAX_VALUE,
|
||||
true
|
||||
);
|
||||
@@ -141,7 +141,7 @@ public class SplitIterTest {
|
||||
public void splitByEmptyTest(){
|
||||
final String text = "aa,bb,cc";
|
||||
final SplitIter splitIter = new SplitIter(text,
|
||||
new StrFinder("", false),
|
||||
StrFinder.of("", false),
|
||||
3,
|
||||
false
|
||||
);
|
||||
|
Reference in New Issue
Block a user