From e7cac727a9231ff3602e61a4ea678e0463eb0e39 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 24 Mar 2015 09:41:42 +0000
Subject: [PATCH] Autorefactored javadocs
---
opendj-server-legacy/src/main/java/org/opends/server/api/EntryCache.java | 14 +++++++++-----
1 files changed, 9 insertions(+), 5 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/api/EntryCache.java b/opendj-server-legacy/src/main/java/org/opends/server/api/EntryCache.java
index 9ba43e4..65d926b 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/api/EntryCache.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/api/EntryCache.java
@@ -79,13 +79,17 @@
{
private static final LocalizedLogger logger = LocalizedLogger.getLoggerForThisClass();
- // The set of filters that define the entries that should be
- // excluded from the cache.
+ /**
+ * The set of filters that define the entries that should be
+ * excluded from the cache.
+ */
private Set<SearchFilter> excludeFilters =
new HashSet<SearchFilter>(0);
- // The set of filters that define the entries that should be
- // included in the cache.
+ /**
+ * The set of filters that define the entries that should be
+ * included in the cache.
+ */
private Set<SearchFilter> includeFilters =
new HashSet<SearchFilter>(0);
@@ -99,7 +103,7 @@
*/
protected AtomicLong cacheMisses = new AtomicLong(0);
- // The monitor associated with this entry cache.
+ /** The monitor associated with this entry cache. */
private EntryCacheMonitorProvider entryCacheMonitor;
--
Gitblit v1.10.0