From 25839185c11b25912819381fd6a36235fa963d11 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Fri, 14 Jun 2019 18:57:41 -0700 Subject: [PATCH] Fix checkstyle violation --- .../springframework/boot/context/properties/bind/Binder.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/bind/Binder.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/bind/Binder.java index c9877e5a3a..236083902f 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/bind/Binder.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/bind/Binder.java @@ -244,8 +244,8 @@ public class Binder { * @param target the target bindable * @param handler the bind handler (may be {@code null}) * @param the bound or created type - * @since 2.2.0 * @return the bound or created object + * @since 2.2.0 */ public T bindOrCreate(ConfigurationPropertyName name, Bindable target, BindHandler handler) { return bind(name, target, handler, true);