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/Utils.java | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/opendj-cli/src/main/java/com/forgerock/opendj/cli/Utils.java b/opendj-cli/src/main/java/com/forgerock/opendj/cli/Utils.java
index 070126a..03c19d6 100644
--- a/opendj-cli/src/main/java/com/forgerock/opendj/cli/Utils.java
+++ b/opendj-cli/src/main/java/com/forgerock/opendj/cli/Utils.java
@@ -59,7 +59,7 @@
/**
* This class provides utility functions for all the client side tools.
*/
-final public class Utils {
+public final class Utils {
/** Platform appropriate line separator. */
public static final String LINE_SEPARATOR = System.getProperty("line.separator");
@@ -68,12 +68,12 @@
* The value used to display arguments that must be obfuscated (such as passwords). This does not require
* localization (since the output of command builder by its nature is not localized).
*/
- public final static String OBFUSCATED_VALUE = "******";
+ public static final String OBFUSCATED_VALUE = "******";
/**
* The maximum number of times we try to confirm.
*/
- public final static int CONFIRMATION_MAX_TRIES = 5;
+ public static final int CONFIRMATION_MAX_TRIES = 5;
/**
* The date format string that will be used to construct and parse dates represented using generalized time. It is
--
Gitblit v1.10.0