diff --git a/spring-aop/src/main/java/org/springframework/aop/framework/CoroutinesUtils.java b/spring-aop/src/main/java/org/springframework/aop/framework/CoroutinesUtils.java index ef51a137262..dea2fe64084 100644 --- a/spring-aop/src/main/java/org/springframework/aop/framework/CoroutinesUtils.java +++ b/spring-aop/src/main/java/org/springframework/aop/framework/CoroutinesUtils.java @@ -28,7 +28,7 @@ import org.springframework.lang.Nullable; * Package-visible class designed to avoid a hard dependency on Kotlin and Coroutines dependency at runtime. * * @author Sebastien Deleuze - * @since 6.1.0 + * @since 6.1 */ abstract class CoroutinesUtils { diff --git a/spring-context/src/main/java/org/springframework/context/support/ReloadableResourceBundleMessageSource.java b/spring-context/src/main/java/org/springframework/context/support/ReloadableResourceBundleMessageSource.java index 0ce1b8cd0fc..18dffe1f037 100644 --- a/spring-context/src/main/java/org/springframework/context/support/ReloadableResourceBundleMessageSource.java +++ b/spring-context/src/main/java/org/springframework/context/support/ReloadableResourceBundleMessageSource.java @@ -120,7 +120,7 @@ public class ReloadableResourceBundleMessageSource extends AbstractResourceBased * Set the list of supported file extensions. *

The default is a list containing {@code .properties} and {@code .xml}. * @param fileExtensions the file extensions (starts with a dot) - * @since 6.1.0 + * @since 6.1 */ public void setFileExtensions(List fileExtensions) { Assert.isTrue(!CollectionUtils.isEmpty(fileExtensions), "At least one file extension is required"); diff --git a/spring-jms/src/main/java/org/springframework/jms/listener/AbstractMessageListenerContainer.java b/spring-jms/src/main/java/org/springframework/jms/listener/AbstractMessageListenerContainer.java index a65391e1647..a94341537fe 100644 --- a/spring-jms/src/main/java/org/springframework/jms/listener/AbstractMessageListenerContainer.java +++ b/spring-jms/src/main/java/org/springframework/jms/listener/AbstractMessageListenerContainer.java @@ -578,7 +578,7 @@ public abstract class AbstractMessageListenerContainer extends AbstractJmsListen /** * Return the {@link ObservationRegistry} used for recording * {@link JmsObservationDocumentation#JMS_MESSAGE_PUBLISH JMS message processing observations}. - * @since 6.1.0 + * @since 6.1 */ @Nullable public ObservationRegistry getObservationRegistry() { @@ -589,7 +589,7 @@ public abstract class AbstractMessageListenerContainer extends AbstractJmsListen * Set the {@link ObservationRegistry} to be used for recording * {@link JmsObservationDocumentation#JMS_MESSAGE_PUBLISH JMS message processing observations}. * Defaults to no-op observations if the registry is not set. - * @since 6.1.0 + * @since 6.1 */ public void setObservationRegistry(@Nullable ObservationRegistry observationRegistry) { this.observationRegistry = observationRegistry; diff --git a/spring-webflux/src/main/kotlin/org/springframework/web/reactive/function/server/CoRouterFunctionDsl.kt b/spring-webflux/src/main/kotlin/org/springframework/web/reactive/function/server/CoRouterFunctionDsl.kt index 7a085f83a74..8d82056282c 100644 --- a/spring-webflux/src/main/kotlin/org/springframework/web/reactive/function/server/CoRouterFunctionDsl.kt +++ b/spring-webflux/src/main/kotlin/org/springframework/web/reactive/function/server/CoRouterFunctionDsl.kt @@ -624,7 +624,7 @@ class CoRouterFunctionDsl internal constructor (private val init: (CoRouterFunct * Allow to provide the default [CoroutineContext], potentially dynamically based on * the incoming [ServerRequest]. * @param provider the [CoroutineContext] provider - * @since 6.1.0 + * @since 6.1 */ fun context(provider: suspend (ServerRequest) -> CoroutineContext) { if (this.contextProvider != null) {