From 2a3158aad80fc910b83336485b3e545dea50066c Mon Sep 17 00:00:00 2001
From: Jean-Noël Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Wed, 20 Apr 2016 09:23:30 +0000
Subject: [PATCH] guitools + quicksetup: added @Override + Autorefactor'ed comments
---
opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/browser/IconPool.java | 18 +++++-------------
1 files changed, 5 insertions(+), 13 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/browser/IconPool.java b/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/browser/IconPool.java
index 8bdbb38..81696b4 100644
--- a/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/browser/IconPool.java
+++ b/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/browser/IconPool.java
@@ -12,7 +12,7 @@
* information: "Portions Copyright [year] [name of copyright owner]".
*
* Copyright 2008-2010 Sun Microsystems, Inc.
- * Portions Copyright 2013-2015 ForgeRock AS.
+ * Portions Copyright 2013-2016 ForgeRock AS.
*/
package org.opends.guitools.controlpanel.browser;
@@ -35,17 +35,11 @@
*/
public class IconPool {
- /**
- * Mask for the leaf node.
- */
+ /** Mask for the leaf node. */
public static final int MODIFIER_LEAF = 0x01;
- /**
- * Mask for the referral node.
- */
+ /** Mask for the referral node. */
public static final int MODIFIER_REFERRAL = 0x02;
- /**
- * Mask for the node that has an error.
- */
+ /** Mask for the node that has an error. */
public static final int MODIFIER_ERROR = 0x04;
private final HashMap<String, ImageIcon> iconTable = new HashMap<>();
@@ -59,9 +53,7 @@
private ImageIcon errorMaskIcon;
private ImageIcon referralMaskIcon;
- /**
- * The path that contains the icons.
- */
+ /** The path that contains the icons. */
public static final String IMAGE_PATH =
"org/opends/guitools/controlpanel/images";
--
Gitblit v1.10.0