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

jvergara
19.55.2007 77a17e4cb35b6232e8fab371bdd735e6f53bd7a1
opendj-sdk/opends/src/server/org/opends/server/util/CertificateManager.java
@@ -332,6 +332,7 @@
      aliasList.add(aliasEnumeration.nextElement());
    }
    String[] aliases = new String[aliasList.size()];
    return aliasList.toArray(aliases);
  }
@@ -646,7 +647,6 @@
  }
  /**
   * Removes the specified certificate from the key store.
   *
@@ -855,6 +855,19 @@
    {
      throw new KeyStoreException(String.valueOf(e), e);
    }
    finally
    {
      if (keyStoreInputStream != null)
      {
        try
        {
          keyStoreInputStream.close();
        }
        catch (Throwable t)
        {
        }
      }
    }
  }
}