From b52956de75caa2be959a4bdc768462070aa6549f Mon Sep 17 00:00:00 2001
From: Fabio Pistolesi <fabio.pistolesi@forgerock.com>
Date: Wed, 06 May 2015 12:40:41 +0000
Subject: [PATCH] OPENDJ-1849 CR-6871 Remove references to JE from pluggable backend

---
 opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/ID2Count.java |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/ID2Count.java b/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/ID2Count.java
index e922f95..2dfead2 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/ID2Count.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/ID2Count.java
@@ -38,10 +38,10 @@
 import org.opends.server.backends.pluggable.spi.WriteableTransaction;
 
 /**
- * Store a counter associated to a key. Counter value is sharded amongst multiple database key to allow concurrent
+ * Store a counter associated to a key. Counter value is sharded amongst multiple keys to allow concurrent
  * update without contention (at the price of a slower read).
  */
-final class ID2Count extends AbstractDatabaseContainer
+final class ID2Count extends AbstractTree
 {
   /**
    * Must be a power of 2 @see <a href="http://en.wikipedia.org/wiki/Modulo_operation#Performance_issues">Performance
@@ -129,7 +129,7 @@
 
   /**
    * Get the counter value for the specified key
-   * @param txn The database transaction
+   * @param txn The transaction
    * @param entryID The entryID identifying to the counter
    * @return Value of the counter. 0 if no counter is associated yet.
    */
@@ -160,7 +160,7 @@
   /**
    * Get the total counter value. The total counter maintain the sum of all
    * the counter contained in this tree.
-   * @param txn The database transaction
+   * @param txn The transaction
    * @return Sum of all the counter contained in this tree
    */
   long getTotalCount(ReadableTransaction txn)
@@ -170,7 +170,7 @@
 
   /**
    * Delete the counter associated to the given key
-   * @param txn The database transaction
+   * @param txn The transaction
    * @param entryID The entryID identifying the counter
    * @return Value of the counter before it's deletion.
    */

--
Gitblit v1.10.0