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

Yannick Lecaillez
19.51.2015 3ded31cba7f9b63fdfb3e9a46e744944034df8a2
Minor cleanup (use diamond & interface)
1 files modified
3 ■■■■ changed files
opendj-sdk/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/RootContainer.java 3 ●●●● patch | view | raw | blame | history
opendj-sdk/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/RootContainer.java
@@ -35,6 +35,7 @@
import java.util.List;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.atomic.AtomicLong;
import org.forgerock.i18n.LocalizableMessage;
@@ -79,7 +80,7 @@
  private BackendMonitor monitor;
  /** The base DNs contained in this root container. */
  private final ConcurrentHashMap<DN, EntryContainer> entryContainers = new ConcurrentHashMap<DN, EntryContainer>();
  private final ConcurrentMap<DN, EntryContainer> entryContainers = new ConcurrentHashMap<>();
  /** Value of the next entryID to be assigned. */
  private AtomicLong nextEntryID = new AtomicLong(1);