Skip to content

Commit 97efacc

Browse files
committed
Merge branch '5.2.x'
# Conflicts: # spring-aspects/src/main/java/org/springframework/beans/factory/aspectj/AnnotationBeanConfigurerAspect.aj
2 parents b67de25 + 9e12a20 commit 97efacc

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

spring-aspects/src/main/java/org/springframework/beans/factory/aspectj/AbstractInterfaceDrivenDependencyInjectionAspect.aj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2014 the original author or authors.
2+
* Copyright 2002-2020 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -67,6 +67,7 @@ import java.io.Serializable;
6767
* @since 2.5.2
6868
*/
6969
public abstract aspect AbstractInterfaceDrivenDependencyInjectionAspect extends AbstractDependencyInjectionAspect {
70+
7071
/**
7172
* Select initialization join point as object construction
7273
*/

spring-aspects/src/main/java/org/springframework/beans/factory/aspectj/AnnotationBeanConfigurerAspect.aj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2017 the original author or authors.
2+
* Copyright 2002-2020 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -47,7 +47,8 @@ import org.springframework.beans.factory.wiring.BeanConfigurerSupport;
4747
public aspect AnnotationBeanConfigurerAspect extends AbstractInterfaceDrivenDependencyInjectionAspect
4848
implements BeanFactoryAware, InitializingBean, DisposableBean {
4949

50-
private BeanConfigurerSupport beanConfigurerSupport = new BeanConfigurerSupport();
50+
private final BeanConfigurerSupport beanConfigurerSupport = new BeanConfigurerSupport();
51+
5152

5253
@Override
5354
public void setBeanFactory(BeanFactory beanFactory) {

spring-web/src/main/java/org/springframework/web/context/request/WebRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2018 the original author or authors.
2+
* Copyright 2002-2020 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)