File tree 1 file changed +4
-4
lines changed
spring-context/src/main/java/org/springframework/context/annotation
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2015 the original author or authors.
2
+ * Copyright 2002-2016 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -75,12 +75,12 @@ public LoadTimeWeaver loadTimeWeaver() {
75
75
LoadTimeWeaver loadTimeWeaver = null ;
76
76
77
77
if (this .ltwConfigurer != null ) {
78
- // the user has provided a custom LTW instance
79
- loadTimeWeaver = ltwConfigurer .getLoadTimeWeaver ();
78
+ // The user has provided a custom LoadTimeWeaver instance
79
+ loadTimeWeaver = this . ltwConfigurer .getLoadTimeWeaver ();
80
80
}
81
81
82
82
if (loadTimeWeaver == null ) {
83
- // no custom LTW provided -> fall back to the default
83
+ // No custom LoadTimeWeaver provided -> fall back to the default
84
84
loadTimeWeaver = new DefaultContextLoadTimeWeaver (this .beanClassLoader );
85
85
}
86
86
You can’t perform that action at this time.
0 commit comments