From eeee7d47158a5e22aaf3d98f45db724ba4f60f1b Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Fri, 23 Jan 2015 12:27:03 +0000
Subject: [PATCH] Reduce methods visibility Fixed up javadocs

---
 opendj3-server-dev/src/server/org/opends/server/backends/jeb/State.java |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/opendj3-server-dev/src/server/org/opends/server/backends/jeb/State.java b/opendj3-server-dev/src/server/org/opends/server/backends/jeb/State.java
index 1e43ec8..32d79b7 100644
--- a/opendj3-server-dev/src/server/org/opends/server/backends/jeb/State.java
+++ b/opendj3-server-dev/src/server/org/opends/server/backends/jeb/State.java
@@ -22,19 +22,19 @@
  *
  *
  *      Copyright 2006-2008 Sun Microsystems, Inc.
- *      Portions copyright 2011-2014 ForgeRock AS
+ *      Portions copyright 2011-2015 ForgeRock AS
  */
 package org.opends.server.backends.jeb;
 
+import static com.sleepycat.je.LockMode.*;
+import static com.sleepycat.je.OperationStatus.*;
+
 import java.util.Arrays;
 
 import org.opends.server.util.StaticUtils;
 
 import com.sleepycat.je.*;
 
-import static com.sleepycat.je.LockMode.*;
-import static com.sleepycat.je.OperationStatus.*;
-
 /**
  * This class is responsible for storing the configuration state of
  * the JE backend for a particular suffix.
@@ -84,7 +84,7 @@
    * @return true if the entry was removed, false if it was not.
    * @throws DatabaseException If an error occurs in the JE database.
    */
-  public boolean removeIndexTrustState(Transaction txn, DatabaseContainer index)
+  boolean removeIndexTrustState(Transaction txn, DatabaseContainer index)
        throws DatabaseException
   {
     DatabaseEntry key = keyForIndex(index);
@@ -120,7 +120,7 @@
    * @param trusted The state value to put into the database.
    * @throws DatabaseException If an error occurs in the JE database.
    */
-  public void putIndexTrustState(Transaction txn, DatabaseContainer index, boolean trusted)
+  void putIndexTrustState(Transaction txn, DatabaseContainer index, boolean trusted)
        throws DatabaseException
   {
     DatabaseEntry key = keyForIndex(index);

--
Gitblit v1.10.0