fix weird assignment statement

This commit is contained in:
BinaryWang 2016-06-02 09:50:00 +08:00
parent 14057344a5
commit fb3a093be1

View File

@ -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 {