From 763a75aeed1a7731ddb95b99496aa7c1bf206ed0 Mon Sep 17 00:00:00 2001
From: Matthew Swift <matthew.swift@forgerock.com>
Date: Fri, 27 Feb 2015 00:31:10 +0000
Subject: [PATCH] OPENDJ-1855: Reformat and cleanup pluggable backend code: adjust visibility, findbugs, ucdetector, etc...
---
opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/VLVIndex.java | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/VLVIndex.java b/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/VLVIndex.java
index 7280260..4816039 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/VLVIndex.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/VLVIndex.java
@@ -84,7 +84,7 @@
* attribute value is bigger then the previous key but smaller or equal
* to its own key.
*/
-public class VLVIndex extends DatabaseContainer
+class VLVIndex extends DatabaseContainer
implements ConfigurationChangeListener<BackendVLVIndexCfg>
{
private static final LocalizedLogger logger = LocalizedLogger.getLoggerForThisClass();
@@ -933,7 +933,7 @@
* otherwise.
* @throws StorageRuntimeException If an error occurs in the JE database.
*/
- public synchronized void setTrusted(WriteableStorage txn, boolean trusted)
+ synchronized void setTrusted(WriteableStorage txn, boolean trusted)
throws StorageRuntimeException
{
this.trusted = trusted;
@@ -944,7 +944,7 @@
* Return true iff this index is trusted.
* @return the trusted state of this index
*/
- public boolean isTrusted()
+ boolean isTrusted()
{
return trusted;
}
@@ -1021,7 +1021,7 @@
* @return The encoded bytes.
* @throws DirectoryException If a Directory Server error occurs.
*/
- ByteString encodeKey(long entryID, ByteString[] values, AttributeType[] types)
+ private ByteString encodeKey(long entryID, ByteString[] values, AttributeType[] types)
throws DirectoryException
{
try
--
Gitblit v1.10.0