From a41662c1136b2bb4a4198df89e0e87d2be3ef099 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Thu, 16 Jul 2015 14:57:56 +0000
Subject: [PATCH] AutoRefactor'ed simplify expressions

---
 opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/DataReplicationOptions.java |    8 ++------
 1 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/DataReplicationOptions.java b/opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/DataReplicationOptions.java
index e3bcd59..8fa03c8 100644
--- a/opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/DataReplicationOptions.java
+++ b/opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/DataReplicationOptions.java
@@ -22,10 +22,8 @@
  *
  *
  *      Copyright 2006-2008 Sun Microsystems, Inc.
- *      Portions Copyright 2013 ForgeRock AS.
+ *      Portions Copyright 2013-2015 ForgeRock AS.
  */
-
-
 package org.opends.quicksetup.installer;
 
 import org.opends.quicksetup.Constants;
@@ -34,14 +32,12 @@
 /**
  * This class is used to provide a data model for the Data Replication
  * Options panel of the installer.
- *
  */
 public class DataReplicationOptions
 {
   /**
    * This enumeration is used to know what the user wants to do for the data
    * (import data or not, what use as source of the data...).
-   *
    */
   public enum Type
   {
@@ -179,7 +175,7 @@
   {
     int defaultPort = -1;
 
-    for (int i=0;i<10000 && (defaultPort == -1);i+=1000)
+    for (int i=0;i<10000 && defaultPort == -1;i+=1000)
     {
       int port = i + Constants.DEFAULT_REPLICATION_PORT;
       if (Utils.canUseAsPort(port))

--
Gitblit v1.10.0