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

Jean-Noel Rouvignac
16.59.2015 b0a00d248d3f6ae91627490e7a177d9ad5184331
opendj-server-legacy/src/main/java/org/opends/server/api/Group.java
@@ -300,12 +300,9 @@
   * @throws  DirectoryException  If a problem occurs while attempting
   *                              to make the determination.
   */
  public boolean isMember(DN userDN)
         throws DirectoryException
  public boolean isMember(DN userDN) throws DirectoryException
  {
    if (userDN != null)
      return isMember(userDN, new HashSet<DN>());
    return false;
    return userDN != null && isMember(userDN, new HashSet<DN>());
  }