From afc757e61838625dc7fd9c85d450073b201aaa67 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Tue, 6 May 2008 14:43:52 +0000 Subject: [PATCH] Removed reference to LdapDataAccessException since it isn't actually mentioned except in javadoc --- .../security/ldap/LdapAuthoritiesPopulator.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/src/main/java/org/springframework/security/ldap/LdapAuthoritiesPopulator.java b/core/src/main/java/org/springframework/security/ldap/LdapAuthoritiesPopulator.java index 4e7c48fa04..2df828a20b 100644 --- a/core/src/main/java/org/springframework/security/ldap/LdapAuthoritiesPopulator.java +++ b/core/src/main/java/org/springframework/security/ldap/LdapAuthoritiesPopulator.java @@ -17,8 +17,6 @@ package org.springframework.security.ldap; import org.springframework.security.GrantedAuthority; -import org.springframework.security.ldap.LdapDataAccessException; - import org.springframework.ldap.core.DirContextOperations; @@ -42,7 +40,6 @@ public interface LdapAuthoritiesPopulator { * * @return the granted authorities for the given user. * - * @throws LdapDataAccessException if there is a problem accessing the directory. */ GrantedAuthority[] getGrantedAuthorities(DirContextOperations userData, String username); }