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/pluggable/DN2ID.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/opendj3-server-dev/src/server/org/opends/server/backends/pluggable/DN2ID.java b/opendj3-server-dev/src/server/org/opends/server/backends/pluggable/DN2ID.java
index 4c090ba6..607da42 100644
--- a/opendj3-server-dev/src/server/org/opends/server/backends/pluggable/DN2ID.java
+++ b/opendj3-server-dev/src/server/org/opends/server/backends/pluggable/DN2ID.java
@@ -73,7 +73,7 @@
    * @throws StorageRuntimeException If an error occurred while attempting to insert
    * the new record.
    */
-  public boolean insert(WriteableStorage txn, DN dn, EntryID id) throws StorageRuntimeException
+  boolean insert(WriteableStorage txn, DN dn, EntryID id) throws StorageRuntimeException
   {
     ByteString key = dnToDNKey(dn, prefixRDNComponents);
     ByteString value = id.toByteString();
@@ -129,7 +129,7 @@
    * @throws StorageRuntimeException If an error occurred while attempting to remove
    * the record.
    */
-  public boolean remove(WriteableStorage txn, DN dn) throws StorageRuntimeException
+  boolean remove(WriteableStorage txn, DN dn) throws StorageRuntimeException
   {
     ByteString key = dnToDNKey(dn, prefixRDNComponents);
 

--
Gitblit v1.10.0