Make inner classes static where possible

Closes gh-22804
This commit is contained in:
Сергей Цыпанов
2019-04-17 17:37:42 +03:00
committed by Sam Brannen
parent 261dcab8ce
commit 18af3892dd
5 changed files with 5 additions and 5 deletions

View File

@@ -263,7 +263,7 @@ final class InstantiationModelAwarePointcutAdvisorImpl
* Note that this is a <i>dynamic</i> pointcut; otherwise it might be optimized out
* if it does not at first match statically.
*/
private final class PerTargetInstantiationModelPointcut extends DynamicMethodMatcherPointcut {
private static final class PerTargetInstantiationModelPointcut extends DynamicMethodMatcherPointcut {
private final AspectJExpressionPointcut declaredPointcut;