Make inner classes static where possible

Closes gh-22804
This commit is contained in:
Сергей Цыпанов
2019-04-17 19:05:24 +02:00
committed by Sam Brannen
parent 261dcab8ce
commit 18af3892dd
5 changed files with 5 additions and 5 deletions
@@ -565,7 +565,7 @@ public class CommonAnnotationBeanPostProcessor extends InitDestroyAnnotationBean
* Class representing generic injection information about an annotated field
* or setter method, supporting @Resource and related annotations.
*/
protected abstract class LookupElement extends InjectionMetadata.InjectedElement {
protected abstract static class LookupElement extends InjectionMetadata.InjectedElement {
protected String name = "";