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/PresenceIndexer.java | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/PresenceIndexer.java b/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/PresenceIndexer.java
index 4122c05..267a22c 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/PresenceIndexer.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/PresenceIndexer.java
@@ -40,23 +40,23 @@
/**
* An implementation of an Indexer for attribute presence.
*/
-public class PresenceIndexer extends Indexer
+class PresenceIndexer extends Indexer
{
/** The key bytes used for the presence index. */
- static final byte[] presenceKeyBytes = "+".getBytes();
+ private static final byte[] presenceKeyBytes = "+".getBytes();
/** The key bytes used for the presence index as a {@link ByteString}. */
static final ByteString presenceKey = ByteString.wrap(presenceKeyBytes);
/** The attribute type for which this instance will generate index keys. */
- private AttributeType attributeType;
+ private final AttributeType attributeType;
/**
* Create a new attribute presence indexer.
* @param attributeType The attribute type for which the indexer
* is required.
*/
- public PresenceIndexer(AttributeType attributeType)
+ PresenceIndexer(AttributeType attributeType)
{
this.attributeType = attributeType;
}
--
Gitblit v1.10.0