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 fd6203054e..cf35bff252 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 @@ -299,7 +299,6 @@ public class Binder { name.append(propertyName), propertyTarget, handler, context, true); Class type = target.getType().resolve(); if (skipIfHasBoundBean && context.hasBoundBean(type)) { - System.err.println(type + " " + name); return null; } return context.withBean(type, () -> {