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/IndexBuffer.java | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/IndexBuffer.java b/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/IndexBuffer.java
index 8c62f3f..8bd98fc 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/IndexBuffer.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/IndexBuffer.java
@@ -22,7 +22,7 @@
*
*
* Copyright 2006-2008 Sun Microsystems, Inc.
- * Portions Copyright 2014 ForgeRock AS
+ * Portions Copyright 2014-2015 ForgeRock AS
*/
package org.opends.server.backends.pluggable;
@@ -44,7 +44,7 @@
* the same transaction. The transaction may be null if it is known
* that there are no other concurrent updates to the index.
*/
-public class IndexBuffer
+class IndexBuffer
{
private final EntryContainer entryContainer;
@@ -169,7 +169,7 @@
* @param entryContainer The database entryContainer using this
* index buffer.
*/
- public IndexBuffer(EntryContainer entryContainer)
+ IndexBuffer(EntryContainer entryContainer)
{
this.entryContainer = entryContainer;
}
@@ -232,7 +232,7 @@
* @throws StorageRuntimeException If an error occurs in the JE database.
* @throws DirectoryException If a Directory Server error occurs.
*/
- public void flush(WriteableStorage txn) throws StorageRuntimeException, DirectoryException
+ void flush(WriteableStorage txn) throws StorageRuntimeException, DirectoryException
{
/*
* FIXME: this seems like a surprising way to update the indexes. Why not
--
Gitblit v1.10.0