Skip to content

Commit

Permalink
Remvoe final keyword in LdapSearch
Browse files Browse the repository at this point in the history
  • Loading branch information
Sylinsic committed Jan 29, 2024
1 parent 9dea69c commit d10805c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public LdapSearch(
/**
* Performs the search and passes the resulting {@link ConnectorObject}s to the given handler.
*/
public final void execute() {
public void execute() {
final String[] attrsToGetOption = options.getAttributesToGet();
final Set<String> attrsToGet = getAttributesToGet(attrsToGetOption);

Expand All @@ -148,7 +148,7 @@ public boolean handle(final String baseDN, final SearchResult result) throws Nam
*
* @return the first {@link ConnectorObject} or {@code null}
*/
public final ConnectorObject getSingleResult() {
public ConnectorObject getSingleResult() {
final String[] attrsToGetOption = options.getAttributesToGet();
final Set<String> attrsToGet = getAttributesToGet(attrsToGetOption);
final ConnectorObject[] results = new ConnectorObject[] { null };
Expand Down

0 comments on commit d10805c

Please sign in to comment.