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

ludovicp
31.16.2010 bb6e844a9964c9e36c12c653dc41ac162d1e1a58
opendj-sdk/opends/src/guitools/org/opends/guitools/controlpanel/ui/SimplifiedViewEntryPanel.java
@@ -2022,7 +2022,7 @@
    /**
     * Returns the value that the component is displaying.  The returned value
     * is a Set of Strings (for multivalued attributes), a byte[] for binary
     * is a Set of Strings (for multi-valued attributes), a byte[] for binary
     * values or a String for single-valued attributes.   Single-valued
     * attributes refer to the definition in the schema (and not to the fact
     * that there is a single value for the attribute in this entry).
@@ -2047,12 +2047,7 @@
          ObjectClass oc = schema.getObjectClass(structural.toLowerCase());
          if (oc != null)
          {
            ObjectClass parent = oc.getSuperiorClass();
            while (parent != null)
            {
              values.add(parent.getNameOrOID());
              parent = parent.getSuperiorClass();
            }
            values.addAll(getObjectClassSuperiorValues(oc));
          }
        }
        returnValue = values;