From fb05a04c84aaf054c3863dca893c6fe5cbc86621 Mon Sep 17 00:00:00 2001
From: boli <boli@localhost>
Date: Wed, 04 Jun 2008 17:24:01 +0000
Subject: [PATCH] Fix for issues 3255, 3265, and 3269:
---
opendj-sdk/opends/src/server/org/opends/server/backends/jeb/AttributeIndex.java | 12 ++++--------
1 files changed, 4 insertions(+), 8 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/backends/jeb/AttributeIndex.java b/opendj-sdk/opends/src/server/org/opends/server/backends/jeb/AttributeIndex.java
index 2af0d46..7506cc7 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/backends/jeb/AttributeIndex.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/backends/jeb/AttributeIndex.java
@@ -341,11 +341,10 @@
* entry ID already exists for some keys.
* @throws DatabaseException If an error occurs in the JE database.
* @throws DirectoryException If a Directory Server error occurs.
- * @throws JebException If an error occurs in the JE backend.
*/
public boolean addEntry(IndexBuffer buffer, EntryID entryID,
Entry entry)
- throws DatabaseException, DirectoryException, JebException
+ throws DatabaseException, DirectoryException
{
boolean success = true;
@@ -403,10 +402,9 @@
* entry ID already exists for some keys.
* @throws DatabaseException If an error occurs in the JE database.
* @throws DirectoryException If a Directory Server error occurs.
- * @throws JebException If an error occurs in the JE backend.
*/
public boolean addEntry(Transaction txn, EntryID entryID, Entry entry)
- throws DatabaseException, DirectoryException, JebException
+ throws DatabaseException, DirectoryException
{
boolean success = true;
@@ -461,11 +459,10 @@
* @param entry The contents of the deleted entry.
* @throws DatabaseException If an error occurs in the JE database.
* @throws DirectoryException If a Directory Server error occurs.
- * @throws JebException If an error occurs in the JE backend.
*/
public void removeEntry(IndexBuffer buffer, EntryID entryID,
Entry entry)
- throws DatabaseException, DirectoryException, JebException
+ throws DatabaseException, DirectoryException
{
if (equalityIndex != null)
{
@@ -501,10 +498,9 @@
* @param entry The contents of the deleted entry.
* @throws DatabaseException If an error occurs in the JE database.
* @throws DirectoryException If a Directory Server error occurs.
- * @throws JebException If an error occurs in the JE backend.
*/
public void removeEntry(Transaction txn, EntryID entryID, Entry entry)
- throws DatabaseException, DirectoryException, JebException
+ throws DatabaseException, DirectoryException
{
if (equalityIndex != null)
{
--
Gitblit v1.10.0