From e7cac727a9231ff3602e61a4ea678e0463eb0e39 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 24 Mar 2015 09:41:42 +0000
Subject: [PATCH] Autorefactored javadocs

---
 opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/offline/OfflineInstaller.java |   25 +++++++------------------
 1 files changed, 7 insertions(+), 18 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/offline/OfflineInstaller.java b/opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/offline/OfflineInstaller.java
index 8c896d8..70ca280 100644
--- a/opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/offline/OfflineInstaller.java
+++ b/opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/offline/OfflineInstaller.java
@@ -22,9 +22,8 @@
  *
  *
  *      Copyright 2006-2010 Sun Microsystems, Inc.
- *      Portions Copyright 2011-2014 ForgeRock AS
+ *      Portions Copyright 2011-2015 ForgeRock AS
  */
-
 package org.opends.quicksetup.installer.offline;
 
 import org.forgerock.i18n.LocalizableMessage;
@@ -32,7 +31,6 @@
 import static com.forgerock.opendj.util.OperatingSystem.isWindows;
 import static com.forgerock.opendj.cli.Utils.getThrowableMsg;
 
-
 import java.io.PrintStream;
 import java.io.File;
 import java.util.ArrayList;
@@ -72,11 +70,11 @@
  */
 public class OfflineInstaller extends Installer
 {
-  /* This map contains the ratio associated with each step */
+  /** This map contains the ratio associated with each step. */
   private final Map<ProgressStep, Integer> hmRatio =
       new HashMap<ProgressStep, Integer>();
 
-  /* This map contains the summary associated with each step */
+  /** This map contains the summary associated with each step. */
   private final Map<ProgressStep, LocalizableMessage> hmSummary =
       new HashMap<ProgressStep, LocalizableMessage>();
 
@@ -86,7 +84,6 @@
 
   /**
    * Actually performs the install in this thread.  The thread is blocked.
-   *
    */
   @Override
   public void run()
@@ -304,18 +301,14 @@
     }
   }
 
-  /**
-   * {@inheritDoc}
-   */
+  /** {@inheritDoc} */
   @Override
   public Integer getRatio(ProgressStep status)
   {
     return hmRatio.get(status);
   }
 
-  /**
-   * {@inheritDoc}
-   */
+  /** {@inheritDoc} */
   @Override
   public LocalizableMessage getSummary(ProgressStep status)
   {
@@ -546,18 +539,14 @@
     hmRatio.put(InstallProgressStep.FINISHED_CANCELED, 100);
   }
 
-  /**
-   * {@inheritDoc}
-   */
+  /** {@inheritDoc} */
   @Override
   public String getInstallationPath()
   {
     return Utils.getInstallPathFromClasspath();
   }
 
-  /**
-   * {@inheritDoc}
-   */
+  /** {@inheritDoc} */
   @Override
   public String getInstancePath()
   {

--
Gitblit v1.10.0