From ad41085e4ca8a32e29d443591069ec4e94e65067 Mon Sep 17 00:00:00 2001
From: Jean-Noël Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Fri, 02 Oct 2015 15:34:44 +0000
Subject: [PATCH] AutoRefactor'ed the pluggable and PDB backend
---
opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/EntryContainer.java | 8 +-------
1 files changed, 1 insertions(+), 7 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/EntryContainer.java b/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/EntryContainer.java
index d527a45..ce816d5 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/EntryContainer.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/EntryContainer.java
@@ -400,7 +400,6 @@
}
return ccr;
}
-
}
/** A read write lock to handle schema changes and bulk changes. */
@@ -1118,9 +1117,7 @@
dn2uri.checkTargetForReferral(baseEntry, searchScope);
}
- /*
- * The base entry is only included for whole subtree search.
- */
+ /* The base entry is only included for whole subtree search. */
if (searchScope == SearchScope.WHOLE_SUBTREE
&& searchOperation.getFilter().matchesEntry(baseEntry))
{
@@ -2149,7 +2146,6 @@
Cursor<ByteString, ByteString> cursor = txn.openCursor(dn2id.getName());
try
{
-
// Step forward until we pass the ending value.
boolean success = cursor.positionToKeyOrNext(suffix);
while (success && cursor.getKey().compareTo(end) < 0)
@@ -2789,7 +2785,6 @@
}
}
-
/**
* Finds an existing entry whose DN is the closest ancestor of a given baseDN.
*
@@ -2837,7 +2832,6 @@
return false;
}
-
/**
* Fetch the base Entry of the EntryContainer.
* @param baseDN the DN for the base entry
--
Gitblit v1.10.0