Skip to content

Commit

Permalink
Refactor LDAPSearchResults
Browse files Browse the repository at this point in the history
The LDAPSearchResults has been updated to no longer implement
Enumeration to simplify maintenance.
  • Loading branch information
edewata committed Apr 3, 2024
1 parent 76e4ed0 commit 8f118d0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* ***** END LICENSE BLOCK ***** */
package netscape.ldap;

import java.util.Enumeration;
import java.io.Serializable;
import java.util.Vector;

/**
Expand All @@ -55,7 +55,7 @@
* @see netscape.ldap.LDAPConnection#search(java.lang.String, int, java.lang.String, java.lang.String[], boolean)
* @see netscape.ldap.LDAPConnection#abandon(netscape.ldap.LDAPSearchResults)
*/
public class LDAPSearchResults implements Enumeration<Object>, java.io.Serializable {
public class LDAPSearchResults implements Serializable {

static final long serialVersionUID = -501692208613904825L;
private Vector<Object> entries = null;
Expand Down

0 comments on commit 8f118d0

Please sign in to comment.