From d2a3c8703aa9cd4c628c55163bd1a393324d6a23 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 10 Jan 2024 09:58:23 +0000 Subject: [PATCH] Add missing since javadoc to acceptTasksAfterContextClose See gh-38968 --- .../springframework/boot/task/ThreadPoolTaskExecutorBuilder.java | 1 + 1 file changed, 1 insertion(+) diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/task/ThreadPoolTaskExecutorBuilder.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/task/ThreadPoolTaskExecutorBuilder.java index 3ed8506474..fb90c8ad58 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/task/ThreadPoolTaskExecutorBuilder.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/task/ThreadPoolTaskExecutorBuilder.java @@ -169,6 +169,7 @@ public class ThreadPoolTaskExecutorBuilder { * @param acceptTasksAfterContextClose whether to accept further tasks after the * application context close phase has begun * @return a new builder instance + * @since 3.3.0 */ public ThreadPoolTaskExecutorBuilder acceptTasksAfterContextClose(boolean acceptTasksAfterContextClose) { return new ThreadPoolTaskExecutorBuilder(this.queueCapacity, this.corePoolSize, this.maxPoolSize,