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/SplashScreen.java |   18 +++++-------------
 1 files changed, 5 insertions(+), 13 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/quicksetup/SplashScreen.java b/opendj-server-legacy/src/main/java/org/opends/quicksetup/SplashScreen.java
index ba60f5a..ef302ec 100644
--- a/opendj-server-legacy/src/main/java/org/opends/quicksetup/SplashScreen.java
+++ b/opendj-server-legacy/src/main/java/org/opends/quicksetup/SplashScreen.java
@@ -22,8 +22,8 @@
  *
  *
  *      Copyright 2006-2008 Sun Microsystems, Inc.
+ *      Portions Copyright 2015 ForgeRock AS.
  */
-
 package org.opends.quicksetup;
 
 import static org.opends.messages.QuickSetupMessages.*;
@@ -64,7 +64,7 @@
 
   private Class<?> quickSetupClass;
 
-  // Constant for the display of the splash screen
+  /** Constant for the display of the splash screen. */
   private static final int MIN_SPLASH_DISPLAY = 3000;
 
   /**
@@ -78,26 +78,19 @@
     screen.display(args);
   }
 
-  /**
-   * {@inheritDoc}
-   */
+  /** {@inheritDoc} */
   public void update(Graphics g)
   {
     paint(g);
   }
 
-  /**
-   * {@inheritDoc}
-   */
+  /** {@inheritDoc} */
   public void paint(Graphics g)
   {
     g.drawImage(image, 0, 0, this);
   }
 
-  /**
-   * Protected constructor to force to use the main method.
-   *
-   */
+  /** Protected constructor to force to use the main method. */
   protected SplashScreen()
   {
     super(new Frame());
@@ -113,7 +106,6 @@
       setPreferredSize(new Dimension(width, height));
       setSize(width, height);
       Utilities.centerOnScreen(this);
-
     } catch (Exception ex)
     {
       ex.printStackTrace(); // Bug

--
Gitblit v1.10.0