Commit 254b099b authored by Phillip Webb's avatar Phillip Webb

Polish

parent b6150705
...@@ -54,8 +54,8 @@ public class BeanNotOfRequiredTypeFailureAnalyzer ...@@ -54,8 +54,8 @@ public class BeanNotOfRequiredTypeFailureAnalyzer
"The bean '%s' could not be injected as a '%s' because it is a " "The bean '%s' could not be injected as a '%s' because it is a "
+ "JDK dynamic proxy that implements:%n", + "JDK dynamic proxy that implements:%n",
ex.getBeanName(), ex.getRequiredType().getName()); ex.getBeanName(), ex.getRequiredType().getName());
for (Class<?> iface : ex.getRequiredType().getInterfaces()) { for (Class<?> requiredTypeInterface : ex.getRequiredType().getInterfaces()) {
printer.println("\t" + iface.getName()); printer.println("\t" + requiredTypeInterface.getName());
} }
return description.toString(); return description.toString();
} }
......
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