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

Jean-Noël Rouvignac
29.51.2015 4baece95779dd46a3a59d59d1b7aa5958cf6117d
opendj-server-legacy/src/main/java/org/opends/server/protocols/ldap/LDAPAttribute.java
@@ -81,7 +81,7 @@
  {
    this.attributeType = attributeType;
    values = newArrayList(ByteString.valueOf(value));
    values = newArrayList(ByteString.valueOfUtf8(value));
  }
@@ -120,7 +120,7 @@
      this.values = new ArrayList<>(values.size());
      for (String value : values)
      {
        this.values.add(ByteString.valueOf(value));
        this.values.add(ByteString.valueOfUtf8(value));
      }
    }
  }