mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-04-19 03:01:48 +08:00
fix code
This commit is contained in:
parent
0595b91634
commit
22a3c3a936
@ -7,6 +7,7 @@ import cn.hutool.core.util.ArrayUtil;
|
||||
import cn.hutool.core.util.StrUtil;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.Serializable;
|
||||
import java.util.Iterator;
|
||||
import java.util.function.Function;
|
||||
|
||||
@ -16,8 +17,9 @@ import java.util.function.Function;
|
||||
* @author looly
|
||||
* @since 5.7.2
|
||||
*/
|
||||
public class StrJoiner implements Appendable {
|
||||
|
||||
public class StrJoiner implements Appendable, Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private Appendable appendable;
|
||||
private CharSequence delimiter;
|
||||
private CharSequence prefix;
|
||||
|
@ -16,7 +16,7 @@ import java.util.regex.Pattern;
|
||||
* @author Looly
|
||||
* @since 5.7.0
|
||||
*/
|
||||
public class StrSplitter {
|
||||
public class StrSplitter{
|
||||
|
||||
//---------------------------------------------------------------------------------------------- Split by char
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user