Polishing

This commit is contained in:
Juergen Hoeller
2019-03-08 09:54:44 +01:00
parent a98e3f0481
commit a06ab6d0ad
2 changed files with 17 additions and 8 deletions

View File

@@ -300,8 +300,8 @@ public abstract class AutowireUtils {
* {@link Qualifier @Qualifier}, or {@link Value @Value}.
* <p>Note that {@link #resolveDependency} may still be able to resolve the
* dependency for the supplied parameter even if this method returns {@code false}.
* @param parameter the parameter whose dependency should be autowired (must not be
* {@code null})
* @param parameter the parameter whose dependency should be autowired
* (must not be {@code null})
* @param parameterIndex the index of the parameter in the constructor or method
* that declares the parameter
* @since 5.2
@@ -397,8 +397,9 @@ public abstract class AutowireUtils {
return parameter;
}
/**
* Reflective InvocationHandler for lazy access to the current target object.
* Reflective {@link InvocationHandler} for lazy access to the current target object.
*/
@SuppressWarnings("serial")
private static class ObjectFactoryDelegatingInvocationHandler implements InvocationHandler, Serializable {