We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Claus Ibsen opened SPR-3208 and commented
I was reading some of the jira changes about AOP and in #6924
There was a post to this source code: http://springframework.cvs.sourceforge.net/springframework/spring/src/org/springframework/aop/framework/Cglib2AopProxy.java?revision=1.65&view=markup
#1: I noticed a type in the javadoc for line 558 "Interceptor used specifcally for advised methods on a frozen, static proxy."
where specifcally is the typo. It should be: specifically
#2: PS: On line 301 the hashmap is not initialized with a length this.fixedInterceptorMap = new HashMap();
Could this be changed to: this.fixedInterceptorMap = new HashMap(methods.length);
Affects: 2.0.2
The text was updated successfully, but these errors were encountered:
Juergen Hoeller commented
Thanks for spotting those!
Juergen
Sorry, something went wrong.
jhoeller
No branches or pull requests
Claus Ibsen opened SPR-3208 and commented
I was reading some of the jira changes about AOP and in #6924
There was a post to this source code:
http://springframework.cvs.sourceforge.net/springframework/spring/src/org/springframework/aop/framework/Cglib2AopProxy.java?revision=1.65&view=markup
#1:
I noticed a type in the javadoc for line 558
"Interceptor used specifcally for advised methods on a frozen, static proxy."
where specifcally is the typo. It should be: specifically
#2:
PS: On line 301 the hashmap is not initialized with a length
this.fixedInterceptorMap = new HashMap();
Could this be changed to:
this.fixedInterceptorMap = new HashMap(methods.length);
Affects: 2.0.2
The text was updated successfully, but these errors were encountered: