浏览代码

SEC-799: Import cleaning following other changes.

Luke Taylor 17 年之前
父节点
当前提交
341455cde4
共有 1 个文件被更改,包括 2 次插入11 次删除
  1. 2 11
      core/src/main/java/org/springframework/security/config/LdapConfigUtils.java

+ 2 - 11
core/src/main/java/org/springframework/security/config/LdapConfigUtils.java

@@ -1,22 +1,13 @@
 package org.springframework.security.config;
 
-import org.springframework.security.ldap.SpringSecurityContextSource;
-import org.springframework.security.providers.ldap.LdapAuthenticationProvider;
-import org.springframework.security.providers.ldap.LdapAuthenticator;
+import org.springframework.beans.BeansException;
 import org.springframework.beans.factory.config.BeanDefinition;
 import org.springframework.beans.factory.config.BeanFactoryPostProcessor;
-import org.springframework.beans.factory.config.BeanReference;
 import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
-import org.springframework.beans.factory.config.RuntimeBeanReference;
 import org.springframework.beans.factory.support.BeanDefinitionRegistry;
 import org.springframework.beans.factory.support.RootBeanDefinition;
-import org.springframework.beans.BeansException;
 import org.springframework.core.Ordered;
-
-import java.util.ArrayList;
-import java.util.Arrays;
-import java.util.List;
-import java.util.Map;
+import org.springframework.security.ldap.SpringSecurityContextSource;
 
 /**
  * @author Luke Taylor