From 17f7e644b7735ef93f1bb37901f7405d3ac88a8b Mon Sep 17 00:00:00 2001 From: John Blum Date: Thu, 27 Jan 2022 17:42:44 -0800 Subject: [PATCH] Edit and fix Javadoc to comply with Java 17, Javadoc syntax. --- .../RefreshableAnnotationConfigApplicationContext.java | 6 +++--- .../support/LifecycleAwareCacheDataImporterExporter.java | 4 ++-- .../support/ResourceCapableCacheDataImporterExporter.java | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/spring-geode/src/main/java/org/springframework/geode/context/annotation/RefreshableAnnotationConfigApplicationContext.java b/spring-geode/src/main/java/org/springframework/geode/context/annotation/RefreshableAnnotationConfigApplicationContext.java index 7e359a7c..6c331e98 100644 --- a/spring-geode/src/main/java/org/springframework/geode/context/annotation/RefreshableAnnotationConfigApplicationContext.java +++ b/spring-geode/src/main/java/org/springframework/geode/context/annotation/RefreshableAnnotationConfigApplicationContext.java @@ -53,9 +53,9 @@ import org.slf4j.LoggerFactory; * providing the ability to reload/refresh the context at some point later during runtime. * * DISCLAIMER: Currently, this {@link ApplicationContext} implementation (and extension) is being used exclusively for - * testing and experimental (R&D) purposes. It was designed around Apache Geode's forced-disconnect / auto-reconnect - * functionality, providing support for this behavior inside a Spring context. Specifically, this concern is only - * applicable when using Spring Boot to configure and bootstrap Apache Geode peer member + * testing and experimental ({@literal R&D}) purposes. It was designed around Apache Geode's forced-disconnect + * / auto-reconnect functionality, providing support for this behavior inside a Spring context. Specifically, this + * concern is only applicable when using Spring Boot to configure and bootstrap Apache Geode peer member * {@link org.apache.geode.cache.Cache} applications, such as when annotating your Spring Boot application with * SDG's {@link PeerCacheApplication} annotation. This {@link ApplicationContext} implementation is not recommended for * use in Production Systems/Applications (yet). diff --git a/spring-geode/src/main/java/org/springframework/geode/data/support/LifecycleAwareCacheDataImporterExporter.java b/spring-geode/src/main/java/org/springframework/geode/data/support/LifecycleAwareCacheDataImporterExporter.java index 303d9767..e3072f35 100644 --- a/spring-geode/src/main/java/org/springframework/geode/data/support/LifecycleAwareCacheDataImporterExporter.java +++ b/spring-geode/src/main/java/org/springframework/geode/data/support/LifecycleAwareCacheDataImporterExporter.java @@ -47,7 +47,7 @@ import org.springframework.util.Assert; /** * A {@link CacheDataImporterExporter} implementation using the {@literal Decorator Software Design Pattern} to wrap * an existing {@link CacheDataImporterExporter} in order to {@literal decorate} the cache (i.e. {@link Region}) data - * import & export operations, making them Spring {@link ApplicationContext}, {@link Environment}, {@link Lifecycle}, + * import and export operations, making them Spring {@link ApplicationContext}, {@link Environment}, {@link Lifecycle}, * {@link ResourceLoader} aware and capable. * * This wrapper {@literal decorates} the Apache Geode cache {@link Region} data import operation enabling it @@ -98,7 +98,7 @@ public class LifecycleAwareCacheDataImporterExporter implements CacheDataImporte /** * Constructs a new instance of the {@link LifecycleAwareCacheDataImporterExporter} initialized with the given, * target {@link CacheDataImporterExporter} that is wrapped by this implementation to decorate all cache import - * & export data operations in order to make them {@link Lifecycle} aware and capable. + * and export data operations in order to make them {@link Lifecycle} aware and capable. * * @param importerExporter {@link CacheDataImporterExporter} wrapped by this implementation to {@literal decorate} * the cache data import/export operations to be {@link Lifecycle} aware and capable; must not be {@literal null}. diff --git a/spring-geode/src/main/java/org/springframework/geode/data/support/ResourceCapableCacheDataImporterExporter.java b/spring-geode/src/main/java/org/springframework/geode/data/support/ResourceCapableCacheDataImporterExporter.java index c1812a52..254d0c53 100644 --- a/spring-geode/src/main/java/org/springframework/geode/data/support/ResourceCapableCacheDataImporterExporter.java +++ b/spring-geode/src/main/java/org/springframework/geode/data/support/ResourceCapableCacheDataImporterExporter.java @@ -331,7 +331,7 @@ public abstract class ResourceCapableCacheDataImporterExporter extends AbstractC * * This constructor initializes the SpEL objects used to parse and evaluate SpEL expressions in order to * fully qualify and resolve {@link Resource} {@link String locations} defined as properties - * in Spring Boot {@literal application.properties} for Import & Export {@link Resource Resources}. + * in Spring Boot {@literal application.properties} for Import and Export {@link Resource Resources}. * * @see #newExpressionParser() * @see #newEvaluationContextBuilder()