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

Jean-Noël Rouvignac
03.53.2016 c9958277baf5f911bda401802259a4b50d9cd599
opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/nodes/RootNode.java
@@ -14,9 +14,10 @@
 * Copyright 2008 Sun Microsystems, Inc.
 * Portions Copyright 2016 ForgeRock AS.
 */
package org.opends.guitools.controlpanel.ui.nodes;
import org.forgerock.opendj.ldap.DN;
/**
 * The root node of the tree in the 'Manage Entries...' tree.  It represents
 * the root entry of the directory.
@@ -27,7 +28,7 @@
  /** Constructor of the node. */
  public RootNode() {
    super("");
    super(DN.rootDN());
    setLeaf(false);
    setRefreshNeededOnExpansion(false);
  }