Skip to content

Commit 4c41b9d

Browse files
committed
Polishing
(cherry picked from commit 3b44c47)
1 parent 1d39c97 commit 4c41b9d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spring-context/src/main/java/org/springframework/context/annotation/LoadTimeWeavingConfiguration.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2015 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.
@@ -75,12 +75,12 @@ public LoadTimeWeaver loadTimeWeaver() {
7575
LoadTimeWeaver loadTimeWeaver = null;
7676

7777
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();
8080
}
8181

8282
if (loadTimeWeaver == null) {
83-
// no custom LTW provided -> fall back to the default
83+
// No custom LoadTimeWeaver provided -> fall back to the default
8484
loadTimeWeaver = new DefaultContextLoadTimeWeaver(this.beanClassLoader);
8585
}
8686

0 commit comments

Comments
 (0)