From 90666faf6d3ad394f411646c75a4e5607c085193 Mon Sep 17 00:00:00 2001 From: Johnny Lim Date: Thu, 11 Mar 2021 08:51:20 +0900 Subject: [PATCH] Add Javadoc since tag to Bootstrapper.initialize() See gh-25596 --- .../src/main/java/org/springframework/boot/Bootstrapper.java | 1 + 1 file changed, 1 insertion(+) diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/Bootstrapper.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/Bootstrapper.java index b9f13813fe..32c5052335 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/Bootstrapper.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/Bootstrapper.java @@ -30,6 +30,7 @@ public interface Bootstrapper { /** * Initialize the given {@link BootstrapRegistry} with any required registrations. * @param registry the registry to initialize + * @since 2.4.4 */ default void initialize(BootstrapRegistry registry) { intitialize(registry);