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/State.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/State.java b/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/State.java
index b8124e3..dfa97ab 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/State.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/State.java
@@ -38,7 +38,7 @@
* This class is responsible for storing the configuration state of
* the JE backend for a particular suffix.
*/
-public class State extends DatabaseContainer
+class State extends DatabaseContainer
{
private static final ByteString falseBytes = ByteString.wrap(new byte[] { 0x00 });
private static final ByteString trueBytes = ByteString.wrap(new byte[] { 0x01 });
@@ -90,7 +90,7 @@
* @return The trusted state of the index in the database.
* @throws StorageRuntimeException If an error occurs in the JE database.
*/
- public boolean getIndexTrustState(ReadableStorage txn, DatabaseContainer index)
+ boolean getIndexTrustState(ReadableStorage txn, DatabaseContainer index)
throws StorageRuntimeException
{
ByteString key = keyForIndex(index);
--
Gitblit v1.10.0