11
13693261870
2024-11-11 138b959cc11dc9a73b0c766030b99ba1180d8650
src/main/java/com/se/simu/helper/CaffeineHelper.java
@@ -9,13 +9,8 @@
import java.util.List;
import java.util.concurrent.TimeUnit;
/**
 * Caffeine帮助类
 *
 * @author WWW
 * @date 2024-11-05
 */
@Slf4j
@SuppressWarnings("ALL")
public class CaffeineHelper {
    private static Cache<String, Object> cache;
@@ -70,10 +65,8 @@
            BigInteger bigInt = new BigInteger(1, byteArray);
            // 参数16表示16进制
            String result = bigInt.toString(16);
            // 不足32位高位补零
            while (result.length() < 32) {
                result = "0" + result;
            }