From 61b9eb1be03fc03a9f4bb0013a08ff44a1059503 Mon Sep 17 00:00:00 2001
From: Jean-Noël Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Wed, 20 Apr 2016 14:25:46 +0000
Subject: [PATCH] opendj-server-legacy: added @Override + Autorefactor'ed comments
---
opendj-server-legacy/src/main/java/org/opends/server/extensions/DynamicGroupSearchThread.java | 17 +----------------
1 files changed, 1 insertions(+), 16 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/extensions/DynamicGroupSearchThread.java b/opendj-server-legacy/src/main/java/org/opends/server/extensions/DynamicGroupSearchThread.java
index fc3ec01..9bba5b4 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/extensions/DynamicGroupSearchThread.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/extensions/DynamicGroupSearchThread.java
@@ -49,7 +49,6 @@
extends DirectoryThread
implements InternalSearchListener
{
-
private static final LocalizedLogger logger = LocalizedLogger.getLoggerForThisClass();
/** The set of base DNs for the search requests. */
@@ -67,8 +66,6 @@
/** The set of search filters for the search requests. */
private final SearchFilter[] searchFilters;
-
-
/**
* Creates a new dynamic group search thread that is associated with the
* provided member list and that will perform the search using the provided
@@ -96,12 +93,7 @@
searchCounter = 0;
}
-
-
- /**
- * Performs the set of searches and provides the results to the associated
- * member list.
- */
+ /** Performs the set of searches and provides the results to the associated member list. */
@Override
public void run()
{
@@ -146,9 +138,6 @@
memberList.setSearchesCompleted();
}
-
-
- /** {@inheritDoc} */
@Override
public void handleInternalSearchEntry(InternalSearchOperation searchOperation,
SearchResultEntry searchEntry)
@@ -170,9 +159,6 @@
}
}
-
-
- /** {@inheritDoc} */
@Override
public void handleInternalSearchReference(
InternalSearchOperation searchOperation,
@@ -181,4 +167,3 @@
// No implementation required.
}
}
-
--
Gitblit v1.10.0