Skip to content

Commit bb92387

Browse files
committed
Polishing
1 parent 34772e4 commit bb92387

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

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

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2015 the original author or authors.
2+
* Copyright 2012-2015 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.
@@ -29,12 +29,14 @@
2929
* @since 1.3
3030
*/
3131
@Configuration
32-
@ConditionalOnClass({SecurityEvaluationContextExtension.class, EvaluationContextExtensionSupport.class})
32+
@ConditionalOnClass({ SecurityEvaluationContextExtension.class,
33+
EvaluationContextExtensionSupport.class })
3334
public class SecurityDataConfiguration {
3435

3536
@ConditionalOnMissingBean(SecurityEvaluationContextExtension.class)
3637
@Bean
3738
public SecurityEvaluationContextExtension securityEvaluationContextExtension() {
3839
return new SecurityEvaluationContextExtension();
3940
}
41+
4042
}

0 commit comments

Comments
 (0)