HunterHuang0X7C7
2023-08-12 1c7c28f03215f03e97387d7e6b45ae752c396dcb
1
2
3
4
5
6
7
8
9
10
11
12
package com.github.hunter0x7c7.sync.utils;
/*
 * @Auther: Hunter
 * @Date: 2022/12/02/17:48
 * @Description:
 */
 
public class TextUtils {
    public static boolean isEmpty(CharSequence str) {
        return str == null || str.length() <= 0;
    }
}