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

abobrov
28.53.2009 c10bb2752df4326733c9d51ce76247a58c5e6e8d
- [Issue 3726]  RealAttributesOnly Control does not work when types-only search option is enabled: quick plug to avoid turning virtual attributes into real attributes.


1 files modified
4 ■■■■ changed files
opends/src/server/org/opends/server/types/Entry.java 4 ●●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/types/Entry.java
@@ -22,7 +22,7 @@
 * CDDL HEADER END
 *
 *
 *      Copyright 2006-2008 Sun Microsystems, Inc.
 *      Copyright 2006-2009 Sun Microsystems, Inc.
 */
package org.opends.server.types;
import org.opends.messages.Message;
@@ -1242,7 +1242,7 @@
    {
      if (a.hasAllOptions(options))
      {
        if (omitValues)
        if (omitValues && !a.isVirtual())
        {
          duplicateList.add(Attributes.empty(a));
        }