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

Matthew Swift
10.24.2015 7d2ed0b575ab7daccff664179046474a929a44c5
opendj-server-legacy/src/main/java/org/opends/server/backends/jeb/BackendImpl.java
@@ -429,14 +429,12 @@
  public Entry getEntry(DN entryDN) throws DirectoryException
  {
    readerBegin();
    checkRootContainerInitialized();
    EntryContainer ec = rootContainer.getEntryContainer(entryDN);
    ec.sharedLock.lock();
    Entry entry;
    try
    {
      entry = ec.getEntry(entryDN);
      return ec.getEntry(entryDN);
    }
    catch (DatabaseException e)
    {
@@ -448,8 +446,6 @@
      ec.sharedLock.unlock();
      readerEnd();
    }
    return entry;
  }