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/IndexQueryFactoryImpl.java | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/IndexQueryFactoryImpl.java b/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/IndexQueryFactoryImpl.java
index 9d18446..9f6155e 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/IndexQueryFactoryImpl.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/IndexQueryFactoryImpl.java
@@ -22,7 +22,7 @@
*
*
* Copyright 2009-2010 Sun Microsystems, Inc.
- * Portions Copyright 2014 ForgeRock AS
+ * Portions Copyright 2014-2015 ForgeRock AS
*/
package org.opends.server.backends.pluggable;
@@ -40,7 +40,7 @@
* This class is an implementation of IndexQueryFactory which creates
* IndexQuery objects as part of the query of the JEB index.
*/
-public final class IndexQueryFactoryImpl implements IndexQueryFactory<IndexQuery>
+final class IndexQueryFactoryImpl implements IndexQueryFactory<IndexQuery>
{
private static final String PRESENCE_INDEX_KEY = "presence";
@@ -57,7 +57,7 @@
* @param attributeIndex
* The targeted attribute index
*/
- public IndexQueryFactoryImpl(ReadableStorage txn, AttributeIndex attributeIndex)
+ IndexQueryFactoryImpl(ReadableStorage txn, AttributeIndex attributeIndex)
{
this.txn = txn;
this.attributeIndex = attributeIndex;
--
Gitblit v1.10.0