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

lutoff
12.49.2009 5e71c1fec09a40b1a733abc331dae0255d956cc2
fixed for issue #3825 (ldapmodify: strange formating when printing preread and postread controls):
remove the 78 spaces indentation.
1 files modified
6 ■■■■ changed files
opendj-sdk/opends/src/server/org/opends/server/tools/LDAPModify.java 6 ●●●● patch | view | raw | blame | history
opendj-sdk/opends/src/server/org/opends/server/tools/LDAPModify.java
@@ -22,7 +22,7 @@
 * CDDL HEADER END
 *
 *
 *      Copyright 2006-2008 Sun Microsystems, Inc.
 *      Copyright 2006-2009 Sun Microsystems, Inc.
 */
package org.opends.server.tools;
import org.opends.messages.Message;
@@ -459,7 +459,7 @@
            }
            StringBuilder buffer = new StringBuilder();
            searchEntry.toString(buffer, 78);
            searchEntry.toString(buffer, 0);
            out.println(INFO_LDAPMODIFY_PREREAD_ENTRY.get());
            out.println(buffer);
          }
@@ -493,7 +493,7 @@
            }
            StringBuilder buffer = new StringBuilder();
            searchEntry.toString(buffer, 78);
            searchEntry.toString(buffer, 0);
            out.println(INFO_LDAPMODIFY_POSTREAD_ENTRY.get());
            out.println(buffer);
          }