Skip to content

Commit 98f4485

Browse files
注释使用 javadoc 风格
1 parent 2ccd356 commit 98f4485

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

src/main/java/com/wechat/pay/contrib/apache/httpclient/auth/AutoUpdateCertificatesVerifier.java

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,21 @@
3333
*/
3434
public class AutoUpdateCertificatesVerifier implements Verifier {
3535

36-
//证书下载地址
36+
/**
37+
* 证书下载地址
38+
*/
3739
public static final String CERT_DOWNLOAD_PATH = "https://api.mch.weixin.qq.com/v3/certificates";
3840
private static final Logger log = LoggerFactory.getLogger(AutoUpdateCertificatesVerifier.class);
39-
//证书更新间隔时间,单位为分钟
41+
/**
42+
* 证书更新间隔时间,单位为分钟
43+
*/
4044
protected final int minutesInterval;
4145
protected final Credentials credentials;
4246
protected final byte[] apiV3Key;
4347
protected final ReentrantLock lock = new ReentrantLock();
44-
//上次更新时间
48+
/**
49+
* 上次更新时间
50+
*/
4551
protected volatile Long lastUpdate;
4652
protected CertificatesVerifier verifier;
4753

0 commit comments

Comments
 (0)