From d6a06db385dcf1a99e55aae84162893b4d9878c5 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Thu, 22 Aug 2013 09:52:28 +0000
Subject: [PATCH] Code cleanup. Removed useless duplicated javadocs for getMonitorData.
---
opends/src/server/org/opends/server/replication/server/MessageHandler.java | 20 +++++++++++---------
1 files changed, 11 insertions(+), 9 deletions(-)
diff --git a/opends/src/server/org/opends/server/replication/server/MessageHandler.java b/opends/src/server/org/opends/server/replication/server/MessageHandler.java
index f55298c..2e4c5d2 100644
--- a/opends/src/server/org/opends/server/replication/server/MessageHandler.java
+++ b/opends/src/server/org/opends/server/replication/server/MessageHandler.java
@@ -177,6 +177,15 @@
}
/**
+ * Returns the shutdown flag.
+ * @return The shutdown flag value.
+ */
+ public boolean shuttingDown()
+ {
+ return shuttingDown.get();
+ }
+
+ /**
* Returns the Replication Server Domain to which belongs this handler.
*
* @param createIfNotExist Creates the domain if it does not exist.
@@ -204,14 +213,7 @@
return inCount;
}
- /**
- * Retrieves a set of attributes containing monitor data that should be
- * returned to the client if the corresponding monitor entry is requested.
- *
- * @return A set of attributes containing monitor data that should be
- * returned to the client if the corresponding monitor entry is
- * requested.
- */
+ /** {@inheritDoc} */
@Override
public List<Attribute> getMonitorData()
{
@@ -571,7 +573,7 @@
}
/**
- * Increase the counter of update received from the server.
+ * Increase the counter of updates received from the server.
*/
public void incrementInCount()
{
--
Gitblit v1.10.0