We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9bcce4 commit 26c466eCopy full SHA for 26c466e
spring-integration-redis/src/main/java/org/springframework/integration/redis/util/RedisLockRegistry.java
@@ -264,7 +264,7 @@ public enum RedisLockType {
264
SPIN_LOCK, PUB_SUB_LOCK
265
}
266
267
- private Function<String, RedisLock> getRedisLockConstructor(@NonNull RedisLockType redisLockType) {
+ private Function<String, RedisLock> getRedisLockConstructor(RedisLockType redisLockType) {
268
switch (redisLockType) {
269
case SPIN_LOCK:
270
return RedisSpinLock::new;
0 commit comments