From 43f0c2c3c6570234721fb5635e043999fb894e28 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 20 Jan 2015 10:44:19 +0000
Subject: [PATCH] Code cleanup
---
opendj3-server-dev/src/server/org/opends/server/util/ServerConstants.java | 25 ++-----------------------
1 files changed, 2 insertions(+), 23 deletions(-)
diff --git a/opendj3-server-dev/src/server/org/opends/server/util/ServerConstants.java b/opendj3-server-dev/src/server/org/opends/server/util/ServerConstants.java
index 5761cd0..dca524c 100644
--- a/opendj3-server-dev/src/server/org/opends/server/util/ServerConstants.java
+++ b/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.
*/
--
Gitblit v1.10.0