Skip to content

Commit 67ec89e

Browse files
committed
Merge branch '1.1.x'
2 parents f8b191f + 8622e5d commit 67ec89e

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/BootGlobalAuthenticationConfiguration.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
1617
package org.springframework.boot.autoconfigure.security;
1718

1819
import java.util.Map;
@@ -43,7 +44,7 @@
4344
* {@link SpringBootApplication}.
4445
*
4546
* @author Rob Winch
46-
* @since 1.2.2
47+
* @since 1.1.11
4748
*/
4849
@Configuration
4950
@ConditionalOnClass(GlobalAuthenticationConfigurerAdapter.class)
@@ -57,10 +58,12 @@ public static BootGlobalAuthenticationConfigurationAdapter bootGlobalAuthenticat
5758

5859
private static class BootGlobalAuthenticationConfigurationAdapter extends
5960
GlobalAuthenticationConfigurerAdapter {
60-
private final ApplicationContext context;
61-
private static final Log logger = LogFactory
61+
62+
private static Log logger = LogFactory
6263
.getLog(BootGlobalAuthenticationConfiguration.class);
6364

65+
private final ApplicationContext context;
66+
6467
public BootGlobalAuthenticationConfigurationAdapter(ApplicationContext context) {
6568
this.context = context;
6669
}

spring-boot-security-tests/spring-boot-security-tests-web-helloworld/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<relativePath>../</relativePath>
99
</parent>
1010
<artifactId>spring-boot-security-tests-web-helloworld</artifactId>
11-
<name>Spring Boot Security Tests - Web Basic</name>
11+
<name>Spring Boot Security Tests - Web Hello World</name>
1212
<description>${project.name}</description>
1313
<url>http://projects.spring.io/spring-boot/</url>
1414
<organization>

0 commit comments

Comments
 (0)