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

Matthew Swift
10.24.2015 7d2ed0b575ab7daccff664179046474a929a44c5
opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/BackendImpl.java
@@ -376,12 +376,10 @@
  public Entry getEntry(DN entryDN) throws DirectoryException
  {
    EntryContainer ec = accessBegin(null, entryDN);
    ec.sharedLock.lock();
    Entry entry;
    try
    {
      entry = ec.getEntry(entryDN);
      return ec.getEntry(entryDN);
    }
    catch (StorageRuntimeException e)
    {
@@ -393,8 +391,6 @@
      ec.sharedLock.unlock();
      accessEnd();
    }
    return entry;
  }
  /** {@inheritDoc} */