From 8a1b454121351cc7c18a05a44e8c0c252a255399 Mon Sep 17 00:00:00 2001 From: Vedran Pavic Date: Mon, 10 Jul 2017 07:26:35 +0200 Subject: [PATCH] Fix javadoc build warning --- .../session/data/redis/RedisOperationsSessionRepository.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-session-data-redis/src/main/java/org/springframework/session/data/redis/RedisOperationsSessionRepository.java b/spring-session-data-redis/src/main/java/org/springframework/session/data/redis/RedisOperationsSessionRepository.java index adc86529..f6644fec 100644 --- a/spring-session-data-redis/src/main/java/org/springframework/session/data/redis/RedisOperationsSessionRepository.java +++ b/spring-session-data-redis/src/main/java/org/springframework/session/data/redis/RedisOperationsSessionRepository.java @@ -122,7 +122,7 @@ import org.springframework.util.Assert; *

Optimized Writes

* *

- * The {@link RedisSession} keeps track of the properties that have changed and only + * The {@link org.springframework.session.data.redis.RedisOperationsSessionRepository.RedisSession} keeps track of the properties that have changed and only * updates those. This means if an attribute is written once and read many times we only * need to write that attribute once. For example, assume the session attribute * "sessionAttr2" from earlier was updated. The following would be executed upon saving: