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/loggers/FileNamingPolicy.java |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/loggers/FileNamingPolicy.java b/opendj-server-legacy/src/main/java/org/opends/server/loggers/FileNamingPolicy.java
index 6d44a30..f58c927 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/loggers/FileNamingPolicy.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/loggers/FileNamingPolicy.java
@@ -22,7 +22,7 @@
  *
  *
  *      Copyright 2006-2009 Sun Microsystems, Inc.
- *      Portions Copyright 2014 ForgeRock AS
+ *      Portions Copyright 2014-2015 ForgeRock AS
  */
 package org.opends.server.loggers;
 
@@ -40,14 +40,14 @@
    *
    * @return the initial file.
    */
-  public File getInitialName();
+  File getInitialName();
 
   /**
    * Gets the next name to use.
    *
    * @return the next file.
    */
-  public File getNextName();
+  File getNextName();
 
   /**
    * Gets the filename filter that can be used to filter files named by this
@@ -55,17 +55,17 @@
    *
    * @return The FilenameFilter that can filter files named by this policy.
    */
-  public FilenameFilter getFilenameFilter();
+  FilenameFilter getFilenameFilter();
 
   /**
-   * Gets all the existing files named by this policy in the parent directoy
+   * Gets all the existing files named by this policy in the parent directory
    * of the initial file. The initial file is excluded from this list if it
    * exists.
    *
    * @return The files named by this policy or <code>null</code> if an
-   *         error occured.
+   *         error occurred.
    */
-  public File[] listFiles();
+  File[] listFiles();
 
 
 }

--
Gitblit v1.10.0