From 94e9037522922b67e8af412b4cfe476f5e991118 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 17 Feb 2015 23:00:35 +0000
Subject: [PATCH] AutoRefactor: fix modifiers usage

---
 opendj-server-legacy/src/main/java/org/opends/server/api/AlertHandler.java |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/api/AlertHandler.java b/opendj-server-legacy/src/main/java/org/opends/server/api/AlertHandler.java
index b712aff..05a7b71 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/api/AlertHandler.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/api/AlertHandler.java
@@ -22,7 +22,7 @@
  *
  *
  *      Copyright 2006-2008 Sun Microsystems, Inc.
- *      Portions Copyright 2014 ForgeRock AS
+ *      Portions Copyright 2014-2015 ForgeRock AS
  */
 package org.opends.server.api;
 import org.forgerock.i18n.LocalizableMessage;
@@ -68,7 +68,7 @@
    *                                   related to the server
    *                                   configuration.
    */
-  public void initializeAlertHandler(T configuration)
+  void initializeAlertHandler(T configuration)
        throws ConfigException, InitializationException;
 
 
@@ -78,7 +78,7 @@
    *
    * @return  The current configuration for this alert handler.
    */
-  public AlertHandlerCfg getAlertHandlerConfiguration();
+  AlertHandlerCfg getAlertHandlerConfiguration();
 
 
 
@@ -95,7 +95,7 @@
    * @return  {@code true} if the provided configuration is
    *          acceptable, or {@code false} if it is not.
    */
-  public boolean isConfigurationAcceptable(
+  boolean isConfigurationAcceptable(
                       AlertHandlerCfg configuration,
                       List<LocalizableMessage> unacceptableReasons);
 
@@ -105,7 +105,7 @@
    * Performs any necessary cleanup that may be necessary when this
    * alert handler is finalized.
    */
-  public void finalizeAlertHandler();
+  void finalizeAlertHandler();
 
 
 
@@ -117,7 +117,7 @@
    * @param  alertMessage  A message (possibly {@code null}) that can
    *                       provide more information about this alert.
    */
-  public void sendAlertNotification(AlertGenerator generator,
+  void sendAlertNotification(AlertGenerator generator,
                                     String alertType,
                                     LocalizableMessage alertMessage);
 }

--
Gitblit v1.10.0