Commit 861469fb authored by Phillip Webb's avatar Phillip Webb

Remove accidental System.out

parent fabf14ff
...@@ -299,7 +299,6 @@ public class Binder { ...@@ -299,7 +299,6 @@ public class Binder {
name.append(propertyName), propertyTarget, handler, context, true); name.append(propertyName), propertyTarget, handler, context, true);
Class<?> type = target.getType().resolve(); Class<?> type = target.getType().resolve();
if (skipIfHasBoundBean && context.hasBoundBean(type)) { if (skipIfHasBoundBean && context.hasBoundBean(type)) {
System.err.println(type + " " + name);
return null; return null;
} }
return context.withBean(type, () -> { return context.withBean(type, () -> {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment