diff --git a/spring-aop/src/main/java/org/springframework/aop/framework/ProxyProcessorSupport.java b/spring-aop/src/main/java/org/springframework/aop/framework/ProxyProcessorSupport.java index 45b2c3dd58..c7caf8115f 100644 --- a/spring-aop/src/main/java/org/springframework/aop/framework/ProxyProcessorSupport.java +++ b/spring-aop/src/main/java/org/springframework/aop/framework/ProxyProcessorSupport.java @@ -51,7 +51,7 @@ public class ProxyProcessorSupport extends ProxyConfig implements Ordered, BeanC * Set the ordering which will apply to this class's implementation * of Ordered, used when applying multiple processors. *

Default value is {@code Integer.MAX_VALUE}, meaning that it's non-ordered. - * @param order ordering value + * @param order the ordering value */ public void setOrder(int order) { this.order = order; @@ -64,9 +64,9 @@ public class ProxyProcessorSupport extends ProxyConfig implements Ordered, BeanC /** * Set the ClassLoader to generate the proxy class in. - *

Default is the bean ClassLoader, i.e. the ClassLoader used by the - * containing BeanFactory for loading all bean classes. This can be - * overridden here for specific proxies. + *

Default is the bean ClassLoader, i.e. the ClassLoader used by the containing + * {@link org.springframework.beans.factory.BeanFactory} for loading all bean classes. + * This can be overridden here for specific proxies. */ public void setProxyClassLoader(ClassLoader classLoader) { this.proxyClassLoader = classLoader; @@ -89,7 +89,7 @@ public class ProxyProcessorSupport extends ProxyConfig implements Ordered, BeanC /** - * Check the interfaces on the given bean class and apply them to the ProxyFactory, + * Check the interfaces on the given bean class and apply them to the {@link ProxyFactory}, * if appropriate. *

Calls {@link #isConfigurationCallbackInterface} and {@link #isInternalLanguageInterface} * to filter for reasonable proxy interfaces, falling back to a target-class proxy otherwise. diff --git a/spring-core/src/main/java/org/springframework/asm/Type.java b/spring-core/src/main/java/org/springframework/asm/Type.java index 40025be218..6a835c2530 100644 --- a/spring-core/src/main/java/org/springframework/asm/Type.java +++ b/spring-core/src/main/java/org/springframework/asm/Type.java @@ -657,20 +657,20 @@ public class Type { * Appends the descriptor corresponding to this Java type to the given * string builder. * - * @param buf + * @param sb * the string builder to which the descriptor must be appended. */ - private void getDescriptor(final StringBuilder buf) { + private void getDescriptor(final StringBuilder sb) { if (this.buf == null) { // descriptor is in byte 3 of 'off' for primitive types (buf == // null) - buf.append((char) ((off & 0xFF000000) >>> 24)); + sb.append((char) ((off & 0xFF000000) >>> 24)); } else if (sort == OBJECT) { - buf.append('L'); - buf.append(this.buf, off, len); - buf.append(';'); + sb.append('L'); + sb.append(this.buf, off, len); + sb.append(';'); } else { // sort == ARRAY || sort == METHOD - buf.append(this.buf, off, len); + sb.append(this.buf, off, len); } }