Fix for LDAP-93

This commit is contained in:
Mattias Arthursson
2007-12-07 18:30:59 +00:00
parent 261be9e0fa
commit 575d0a347f

View File

@@ -98,7 +98,7 @@ public class SimpleLdapTemplate implements SimpleLdapOperations {
@SuppressWarnings("unchecked")
public <T> List<T> search(String base, String filter, SearchControls controls, ParameterizedContextMapper<T> mapper,
DirContextProcessor processor) {
return ldapOperations.search(base, filter, controls, mapper);
return ldapOperations.search(base, filter, controls, mapper, processor);
}
/*