Skip to content

Commit fb3a093

Browse files
committed
fix weird assignment statement
1 parent 1405734 commit fb3a093

File tree

1 file changed

+1
-1
lines changed
  • weixin-java-common/src/main/java/me/chanjar/weixin/common/util/crypto

1 file changed

+1
-1
lines changed

weixin-java-common/src/main/java/me/chanjar/weixin/common/util/crypto/WxCryptUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public String encrypt(String plainText) {
8383
String encryptedXml = encrypt(genRandomStr(), plainText);
8484

8585
// 生成安全签名
86-
String timeStamp = timeStamp = Long.toString(System.currentTimeMillis() / 1000l);
86+
String timeStamp = Long.toString(System.currentTimeMillis() / 1000l);
8787
String nonce = genRandomStr();
8888

8989
try {

0 commit comments

Comments
 (0)