From 72c1f667f507b9c0124e2c0e136f5cc4535bb7ce Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Fri, 21 Apr 2023 12:06:55 -0700 Subject: [PATCH] Fix @Since javadoc in RestTemplateBuilder See gh-34810 --- .../springframework/boot/web/client/RestTemplateBuilder.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/client/RestTemplateBuilder.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/client/RestTemplateBuilder.java index e1192a6a17..9a981759cb 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/client/RestTemplateBuilder.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/client/RestTemplateBuilder.java @@ -459,7 +459,7 @@ public class RestTemplateBuilder { * Sets the SSL bundle on the underlying {@link ClientHttpRequestFactory}. * @param sslBundle the SSL bundle * @return a new builder instance - * @since 2.1.0 + * @since 3.1.0 */ public RestTemplateBuilder setSslBundle(SslBundle sslBundle) { return new RestTemplateBuilder(this.requestFactorySettings.withSslBundle(sslBundle), this.detectRequestFactory,