mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Matthew Swift
05.14.2015 0bd57577bb85119b2b4495c5ef525ba189d8d17c
opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/State.java
@@ -80,7 +80,7 @@
  boolean removeIndexTrustState(WriteableStorage txn, DatabaseContainer index) throws StorageRuntimeException
  {
    ByteString key = keyForIndex(index);
    return delete(txn, key);
    return txn.delete(getName(), key);
  }
  /**
@@ -94,7 +94,7 @@
      throws StorageRuntimeException
  {
    ByteString key = keyForIndex(index);
    ByteString value = read(txn, key, false);
    ByteString value = txn.read(getName(), key);
    return value != null && value.equals(trueBytes);
  }
@@ -111,7 +111,7 @@
  {
    ByteString key = keyForIndex(index);
    txn.create(treeName, key, trusted ? trueBytes : falseBytes);
    txn.create(getName(), key, trusted ? trueBytes : falseBytes);
  }
}