From 861469fb72af4fb3ec1f12142760b0fe668ca868 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Sat, 4 Nov 2017 21:57:59 -0700 Subject: [PATCH] Remove accidental System.out --- .../org/springframework/boot/context/properties/bind/Binder.java | 1 - 1 file changed, 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 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, () -> {