소스 검색

Fix GlobalMethodSecurityConfigurationTests checkstyle

Issue: gh-4939
Rob Winch 7 년 전
부모
커밋
780c9dd455

+ 2 - 2
config/src/test/java/org/springframework/security/config/annotation/method/configuration/GlobalMethodSecurityConfigurationTests.java

@@ -333,8 +333,8 @@ public class GlobalMethodSecurityConfigurationTests {
 	}
 
 	static class MockBeanPostProcessor implements BeanPostProcessor {
-		Map<String,Object> beforeInit = new HashMap<String,Object>();
-		Map<String,Object> afterInit = new HashMap<String,Object>();
+		Map<String, Object> beforeInit = new HashMap<String, Object>();
+		Map<String, Object> afterInit = new HashMap<String, Object>();
 
 		@Override
 		public Object postProcessBeforeInitialization(Object bean, String beanName) throws