Skip to content

Commit bfa48d5

Browse files
committed
Polish contribution
Closes gh-1112
1 parent 3ccf653 commit bfa48d5

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

spring-beans/src/main/java/org/springframework/beans/factory/BeanClassLoaderAware.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2012 the original author or authors.
2+
* Copyright 2002-2016 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.
@@ -18,7 +18,7 @@
1818

1919
/**
2020
* Callback that allows a bean to be aware of the bean
21-
* {@link ClassLoader class loader}; that is, the class loader is used by the
21+
* {@link ClassLoader class loader}; that is, the class loader used by the
2222
* present bean factory to load bean classes.
2323
*
2424
* <p>This is mainly intended to be implemented by framework classes which

spring-beans/src/main/java/org/springframework/beans/factory/BeanNameAware.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2011 the original author or authors.
2+
* Copyright 2002-2016 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.

spring-beans/src/main/java/org/springframework/beans/factory/DisposableBean.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2012 the original author or authors.
2+
* Copyright 2002-2016 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.
@@ -24,7 +24,8 @@
2424
*
2525
* <p>An alternative to implementing DisposableBean is specifying a custom
2626
* destroy-method, for example in an XML bean definition.
27-
* For a list of all bean lifecycle methods, see the {@link BeanFactory BeanFactory javadocs}.
27+
* For a list of all bean lifecycle methods, see the
28+
* {@link BeanFactory BeanFactory javadocs}.
2829
*
2930
* @author Juergen Hoeller
3031
* @since 12.08.2003

spring-beans/src/main/java/org/springframework/beans/factory/InitializingBean.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2012 the original author or authors.
2+
* Copyright 2002-2016 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.
@@ -23,7 +23,8 @@
2323
*
2424
* <p>An alternative to implementing InitializingBean is specifying a custom
2525
* init-method, for example in an XML bean definition.
26-
* For a list of all bean lifecycle methods, see the {@link BeanFactory BeanFactory javadocs}.
26+
* For a list of all bean lifecycle methods, see the
27+
* {@link BeanFactory BeanFactory javadocs}.
2728
*
2829
* @author Rod Johnson
2930
* @see BeanNameAware

0 commit comments

Comments
 (0)