update 删除多余的行

This commit is contained in:
bleachtred 2023-05-12 17:02:43 +08:00
parent 63a17f5476
commit 2fc2488890

View File

@ -105,7 +105,6 @@ public class CtyunUtils {
private static byte[] hmacSHA256(byte[] data, byte[] key){
try {
HMac hMac = new HMac(HmacAlgorithm.HmacSHA256, key);
hMac.digest(data);
return hMac.digest(data);
} catch (Exception e) {
throw new SmsBlendException(e.getMessage());