From 28dd8d1f95eecc080556d3986e02a8c7792d5cd2 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Mon, 20 Oct 2014 12:15:36 +0000
Subject: [PATCH] AutoRefactored modifier's order.

---
 opendj-cli/src/main/java/com/forgerock/opendj/cli/CommandBuilder.java |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/opendj-cli/src/main/java/com/forgerock/opendj/cli/CommandBuilder.java b/opendj-cli/src/main/java/com/forgerock/opendj/cli/CommandBuilder.java
index 7ebb235..c346d8a 100644
--- a/opendj-cli/src/main/java/com/forgerock/opendj/cli/CommandBuilder.java
+++ b/opendj-cli/src/main/java/com/forgerock/opendj/cli/CommandBuilder.java
@@ -49,7 +49,7 @@
     /**
      * The separator used to link the lines of the resulting command-lines.
      */
-    public final static String LINE_SEPARATOR;
+    public static final String LINE_SEPARATOR;
     static {
         if (OperatingSystem.isWindows()) {
             LINE_SEPARATOR = " ";
@@ -61,7 +61,7 @@
     /**
      * The separator used to link the lines of the resulting command-lines in HTML format.
      */
-    public final static String HTML_LINE_SEPARATOR;
+    public static final String HTML_LINE_SEPARATOR;
     static {
         if (OperatingSystem.isWindows()) {
             HTML_LINE_SEPARATOR = "&nbsp;";
@@ -239,7 +239,7 @@
     }
 
     /** Chars that require special treatment when passing them to command-line. */
-    private final static Set<Character> CHARSTOESCAPE = new TreeSet<Character>(Arrays.asList(
+    private static final Set<Character> CHARSTOESCAPE = new TreeSet<Character>(Arrays.asList(
         ' ', '\t', '\n', '|', ';', '<', '>', '(', ')', '$', '`', '\\', '"', '\''));
 
     /**

--
Gitblit v1.10.0