mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-08-24 16:18:51 +08:00
fix weird assignment statement
This commit is contained in:
parent
14057344a5
commit
fb3a093be1
@ -83,7 +83,7 @@ public class WxCryptUtil {
|
||||
String encryptedXml = encrypt(genRandomStr(), plainText);
|
||||
|
||||
// 生成安全签名
|
||||
String timeStamp = timeStamp = Long.toString(System.currentTimeMillis() / 1000l);
|
||||
String timeStamp = Long.toString(System.currentTimeMillis() / 1000l);
|
||||
String nonce = genRandomStr();
|
||||
|
||||
try {
|
||||
|
Loading…
Reference in New Issue
Block a user