mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-10-29 01:18:36 +08:00
🐛 修复无效引用代码
This commit is contained in:
@ -1,6 +1,5 @@
|
||||
package me.chanjar.weixin.mp.config.impl;
|
||||
|
||||
import com.sun.istack.internal.NotNull;
|
||||
import me.chanjar.weixin.mp.config.redis.JedisWxMpRedisOps;
|
||||
import me.chanjar.weixin.mp.config.redis.WxMpRedisOps;
|
||||
import me.chanjar.weixin.mp.enums.TicketType;
|
||||
@ -30,11 +29,11 @@ public class WxMpRedisConfigImpl extends WxMpDefaultConfigImpl {
|
||||
private String accessTokenKey;
|
||||
private String lockKey;
|
||||
|
||||
public WxMpRedisConfigImpl(@NotNull JedisPool jedisPool) {
|
||||
public WxMpRedisConfigImpl(JedisPool jedisPool) {
|
||||
this(new JedisWxMpRedisOps(jedisPool), "wx");
|
||||
}
|
||||
|
||||
public WxMpRedisConfigImpl(@NotNull WxMpRedisOps redisOps, @NotNull String keyPrefix) {
|
||||
public WxMpRedisConfigImpl(WxMpRedisOps redisOps, String keyPrefix) {
|
||||
this.redisOps = redisOps;
|
||||
this.keyPrefix = keyPrefix;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user