From 9a86656c139eef8963bcf449a8985ef9bcb1299c Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期一, 18 十一月 2024 17:57:05 +0800
Subject: [PATCH] 1

---
 src/main/java/com/yssh/utils/CacheUtils.java |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/src/main/java/com/yssh/utils/CacheUtils.java b/src/main/java/com/yssh/utils/CacheUtils.java
index 1292f87..fd04690 100644
--- a/src/main/java/com/yssh/utils/CacheUtils.java
+++ b/src/main/java/com/yssh/utils/CacheUtils.java
@@ -46,7 +46,7 @@
     }
 
     public static <T> void putListByKey(String key, List<T> list) {
-        if (null != list && list.size() > 0) {
+        if (null != list) {
             put(key, list);
         }
     }
@@ -63,10 +63,8 @@
 
             BigInteger bigInt = new BigInteger(1, byteArray);
 
-            // 鍙傛暟16琛ㄧず16杩涘埗
             String result = bigInt.toString(16);
 
-            // 涓嶈冻32浣嶉珮浣嶈ˉ闆�
             while (result.length() < 32) {
                 result = "0" + result;
             }

--
Gitblit v1.9.3