From a23343e9e4e0b555b1bcfa99a7455e0e28117a3d Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Wed, 08 Jul 2015 07:00:00 +0000
Subject: [PATCH] AutoRefactor'ed remove useless semi-colons
---
opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/event/BrowserEvent.java | 26 ++++++--------------------
1 files changed, 6 insertions(+), 20 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/event/BrowserEvent.java b/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/event/BrowserEvent.java
index 1cd2a6c..0bd12bd 100644
--- a/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/event/BrowserEvent.java
+++ b/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/event/BrowserEvent.java
@@ -23,7 +23,6 @@
*
* Copyright 2008 Sun Microsystems, Inc.
*/
-
package org.opends.guitools.controlpanel.event;
import java.util.EventObject;
@@ -32,41 +31,28 @@
* This class defines an event for the browser. It basically it is used to
* communicate between the BrowserController and the NodeRefresher classes.
* @author jvergara
- *
*/
public class BrowserEvent extends EventObject
{
private static final long serialVersionUID = 6476274376887062526L;
- /**
- * The different types of events that we can have.
- *
- */
+ /** The different types of events that we can have. */
public enum Type
{
- /**
- * Update of the entry started.
- */
+ /** Update of the entry started. */
UPDATE_START,
- /**
- * Update of the entry ended.
- */
+ /** Update of the entry ended. */
UPDATE_END,
- /**
- * Insert of children started.
- */
+ /** Insert of children started. */
INSERT_CHILDREN_START,
- /**
- * Insert of children ended.
- */
+ /** Insert of children ended. */
INSERT_CHILDREN_END,
/**
* The specified size limit (max number of children to be returned) in the
* BrowserController was reached.
*/
SIZE_LIMIT_REACHED
-
- };
+ }
private Type type;
--
Gitblit v1.10.0