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

Jean-Noel Rouvignac
07.12.2015 90a6ab6c63699343acf3adcd4346bce2f5665bdd
opendj-server-legacy/src/main/java/org/opends/server/backends/jeb/EntryContainer.java
@@ -124,10 +124,9 @@
  private State state;
  /** The set of attribute indexes. */
  private final HashMap<AttributeType, AttributeIndex> attrIndexMap = new HashMap<AttributeType, AttributeIndex>();
  private final HashMap<AttributeType, AttributeIndex> attrIndexMap = new HashMap<>();
  /** The set of VLV (Virtual List View) indexes. */
  private final HashMap<String, VLVIndex> vlvIndexMap = new HashMap<String, VLVIndex>();
  private final HashMap<String, VLVIndex> vlvIndexMap = new HashMap<>();
  /**
   * Prevents name clashes for common indexes (like id2entry) across multiple suffixes.
@@ -2753,7 +2752,7 @@
   */
  void delete() throws DatabaseException
  {
    List<DatabaseContainer> databases = new ArrayList<DatabaseContainer>();
    List<DatabaseContainer> databases = new ArrayList<>();
    listDatabases(databases);
    if(env.getConfig().getTransactional())
@@ -2888,7 +2887,7 @@
  throws DatabaseException, JebException
  {
    List<DatabaseContainer> databases = new ArrayList<DatabaseContainer>();
    List<DatabaseContainer> databases = new ArrayList<>();
    listDatabases(databases);
    newDatabasePrefix = preparePrefix(newDatabasePrefix);
@@ -3085,7 +3084,7 @@
   */
  public void clear() throws DatabaseException
  {
    List<DatabaseContainer> databases = new ArrayList<DatabaseContainer>();
    List<DatabaseContainer> databases = new ArrayList<>();
    listDatabases(databases);
    for(DatabaseContainer db : databases)