From 2170dcb6c9c91c14420affbf9740a1689e755467 Mon Sep 17 00:00:00 2001 From: John Blum Date: Tue, 17 Nov 2020 19:01:56 -0800 Subject: [PATCH] Edit Javadoc of AbstractSession. --- .../session/data/gemfire/support/AbstractSession.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/spring-session-data-geode/src/main/java/org/springframework/session/data/gemfire/support/AbstractSession.java b/spring-session-data-geode/src/main/java/org/springframework/session/data/gemfire/support/AbstractSession.java index 4d9f023..d292c3a 100644 --- a/spring-session-data-geode/src/main/java/org/springframework/session/data/gemfire/support/AbstractSession.java +++ b/spring-session-data-geode/src/main/java/org/springframework/session/data/gemfire/support/AbstractSession.java @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package org.springframework.session.data.gemfire.support; import java.time.Duration; @@ -23,11 +22,13 @@ import java.util.Set; import org.springframework.session.Session; /** - * The {@link AbstractSession} abstract class is a base implementation of the {@link Session} interface - * to simplify the implementation of various {@link Session} types and their capabilities. + * Abstract base class for implementations of the {@link Session} interface in order to simplify the implementation + * of various {@link Session} types and their capabilities. * * @author John Blum - * @see org.springframework.session.data.gemfire.support.AbstractSession + * @see java.time.Duration + * @see java.time.Instant + * @see org.springframework.session.Session * @since 2.0.0 */ public class AbstractSession implements Session {