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

Jean-Noel Rouvignac
17.44.2015 998747bfaaa3c6b28bbfaf0e282e6c0ccbf46bc0
opendj-server-legacy/src/main/java/org/opends/server/protocols/ldap/LDAPModification.java
@@ -22,7 +22,7 @@
 *
 *
 *      Copyright 2006-2008 Sun Microsystems, Inc.
 *      Portions Copyright 2014 ForgeRock AS
 *      Portions Copyright 2014-2015 ForgeRock AS
 */
package org.opends.server.protocols.ldap;
@@ -152,8 +152,7 @@
   */
  public void toString(StringBuilder buffer)
  {
    buffer.append("LDAPModification(type=");
    buffer.append(String.valueOf(modificationType));
    buffer.append("LDAPModification(type=").append(modificationType);
    buffer.append(", attr=");
    attribute.toString(buffer);
    buffer.append("})");
@@ -177,16 +176,11 @@
      indentBuf.append(' ');
    }
    buffer.append(indentBuf);
    buffer.append("LDAP Modification");
    buffer.append(EOL);
    buffer.append(indentBuf).append("LDAP Modification").append(EOL);
    buffer.append(indentBuf);
    buffer.append("  Modification Type:  ");
    buffer.append(String.valueOf(modificationType));
    buffer.append(" (");
    buffer.append(modificationType.intValue());
    buffer.append(")");
    buffer.append("  Modification Type:  ").append(modificationType);
    buffer.append(" (").append(modificationType.intValue()).append(")");
    buffer.append(EOL);
    buffer.append("  Attribute:");