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/VLVIndex.java | 10 +++-------
1 files changed, 3 insertions(+), 7 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/backends/jeb/VLVIndex.java b/opendj-sdk/opends/src/server/org/opends/server/backends/jeb/VLVIndex.java
index 81c16ea..a9688dc 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/backends/jeb/VLVIndex.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/backends/jeb/VLVIndex.java
@@ -540,8 +540,6 @@
* @param mods The sequence of modifications in the Modify operation.
* @return True if the modification was successfully processed or False
* otherwise.
- * @throws JebException If an error occurs during an operation on a
- * JE database.
* @throws DatabaseException If an error occurs during an operation on a
* JE database.
* @throws DirectoryException If a Directory Server error occurs.
@@ -551,7 +549,7 @@
Entry oldEntry,
Entry newEntry,
List<Modification> mods)
- throws DatabaseException, DirectoryException, JebException
+ throws DatabaseException, DirectoryException
{
DN oldEntryDN = oldEntry.getDN();
DN newEntryDN = newEntry.getDN();
@@ -911,12 +909,11 @@
* @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 updateIndex(Transaction txn,
TreeSet<SortValues> addedValues,
TreeSet<SortValues> deletedValues)
- throws DirectoryException, DatabaseException, JebException
+ throws DirectoryException, DatabaseException
{
// Handle cases where nothing is changed early to avoid
// DB access.
@@ -1135,14 +1132,13 @@
* search criteria.
* @throws DirectoryException If a Directory Server error occurs.
* @throws DatabaseException If an error occurs in the JE database.
- * @throws JebException If an error occurs in the JE database.
*/
public EntryIDSet evaluate(Transaction txn,
SearchOperation searchOperation,
ServerSideSortRequestControl sortControl,
VLVRequestControl vlvRequest,
StringBuilder debugBuilder)
- throws DirectoryException, DatabaseException, JebException
+ throws DirectoryException, DatabaseException
{
if(!trusted || rebuildRunning)
{
--
Gitblit v1.10.0