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

Chris Ridd
19.25.2012 475b62de777edb285f32607cd4501b9c9d551d63
opends/src/dsml/org/opends/dsml/protocol/DSMLModifyOperation.java
@@ -114,10 +114,10 @@
      String attrType = attr.getName();
      ArrayList<ByteString> values = new ArrayList<ByteString> ();
      List<String> vals = attr.getValue();
      for(String val : vals)
      List<Object> vals = attr.getValue();
      for(Object val : vals)
      {
        values.add(ByteString.valueOf(val));
        values.add(ByteStringUtility.convertValue(val));
      }
      LDAPAttribute ldapAttr = new LDAPAttribute(attrType, values);