From 94e9037522922b67e8af412b4cfe476f5e991118 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 17 Feb 2015 23:00:35 +0000
Subject: [PATCH] AutoRefactor: fix modifiers usage

---
 opendj-server-legacy/src/main/java/org/opends/quicksetup/UserData.java |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/quicksetup/UserData.java b/opendj-server-legacy/src/main/java/org/opends/quicksetup/UserData.java
index fcefd14..053e9cb 100644
--- a/opendj-server-legacy/src/main/java/org/opends/quicksetup/UserData.java
+++ b/opendj-server-legacy/src/main/java/org/opends/quicksetup/UserData.java
@@ -22,7 +22,7 @@
  *
  *
  *      Copyright 2008-2010 Sun Microsystems, Inc.
- *      Portions copyright 2011-2014 ForgeRock AS.
+ *      Portions Copyright 2011-2015 ForgeRock AS.
  */
 package org.opends.quicksetup;
 
@@ -576,7 +576,7 @@
    * @return the free port of type x389 if it is available and we can use and -1
    * if not.
    */
-  static public int getDefaultPort()
+  public static int getDefaultPort()
   {
     return getDefaultPort(389);
   }
@@ -589,7 +589,7 @@
    * @return the free port of type x444 if it is available and we can use and -1
    * if not.
    */
-  static public int getDefaultAdminConnectorPort()
+  public static int getDefaultAdminConnectorPort()
   {
     return getDefaultPort(4444);
   }
@@ -634,7 +634,7 @@
    * @param forbiddenPorts an array of ports that we cannot use.
    * @return the port X689 if it is available and we can use and -1 if not.
    */
-  static public int getDefaultJMXPort(int[] forbiddenPorts)
+  public static int getDefaultJMXPort(int[] forbiddenPorts)
   {
     int defaultJMXPort = -1;
 

--
Gitblit v1.10.0