From 1aa670c2f1489bdc5c30206a6707d3c2956bfeab Mon Sep 17 00:00:00 2001 From: Daniel Knittl-Frank Date: Thu, 12 Sep 2019 10:37:31 +0200 Subject: [PATCH] Fix confusing/incorrect JavaDoc of RedisKeyExpiredEvent --- .../springframework/data/redis/core/RedisKeyExpiredEvent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/springframework/data/redis/core/RedisKeyExpiredEvent.java b/src/main/java/org/springframework/data/redis/core/RedisKeyExpiredEvent.java index 552c0afaa7..cdf1ad0e99 100644 --- a/src/main/java/org/springframework/data/redis/core/RedisKeyExpiredEvent.java +++ b/src/main/java/org/springframework/data/redis/core/RedisKeyExpiredEvent.java @@ -24,7 +24,7 @@ /** * {@link RedisKeyExpiredEvent} is Redis specific {@link ApplicationEvent} published when a specific key in Redis - * expires. It might but must not hold the expired value itself next to the key. + * expires. It might hold the expired value itself next to the key, but is not required to do so. * * @author Christoph Strobl * @author Mark Paluch