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

jvergara
08.43.2007 43e9c7913fc664b725e167090fe6d389a4558315
opends/src/statuspanel/org/opends/statuspanel/ConfigFromLDAP.java
@@ -835,17 +835,7 @@
  private String getFirstValue(SearchResult entry, String attrName)
  throws NamingException
  {
    String v = null;
    Attributes attrs = entry.getAttributes();
    if (attrs != null)
    {
      Attribute attr = attrs.get(attrName);
      if ((attr != null) && (attr.size() > 0))
      {
        v = (String)attr.get();
      }
    }
    return v;
    return Utils.getFirstValue(entry, attrName);
  }
  private Set<String> getValues(SearchResult entry, String attrName)