This commit is contained in:
Looly 2024-07-18 16:23:39 +08:00
parent 57b566f9c7
commit fb664be8c5

View File

@ -0,0 +1,12 @@
package cn.hutool.core.util;
import org.junit.Test;
import java.util.List;
public class Issue3660Test {
@Test
public void splitTest() {
System.out.println(StrUtil.split("", ','));
}
}