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

Jean-Noel Rouvignac
20.44.2015 43f0c2c3c6570234721fb5635e043999fb894e28
opendj3-server-dev/src/server/org/opends/server/util/ServerConstants.java
@@ -22,7 +22,7 @@
 *
 *
 *      Copyright 2006-2010 Sun Microsystems, Inc.
 *      Portions Copyright 2010-2014 ForgeRock AS
 *      Portions Copyright 2010-2015 ForgeRock AS
 */
package org.opends.server.util;
@@ -39,9 +39,7 @@
     mayInvoke=true)
public final class ServerConstants
{
  /**
   * The end-of-line character for this platform.
   */
  /** The end-of-line character for this platform. */
  public static final String EOL = System.getProperty("line.separator");
@@ -3005,25 +3003,6 @@
  /**
   * The column at which to wrap long lines of output in the command-line tools.
   */
  public static final int MAX_LINE_WIDTH;
  static {
    int columns = 80;
    try {
      String s = System.getenv("COLUMNS");
      if (s != null) {
        columns = Integer.parseInt(s);
      }
    } catch (Exception e) {
      // Do nothing.
    }
    MAX_LINE_WIDTH = columns - 1;
  }
  /**
   * The name that should be used for the file to which the latest complete
   * schema data should be concatenated.
   */