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/ProtocolElement.java |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/api/ProtocolElement.java b/opendj-server-legacy/src/main/java/org/opends/server/api/ProtocolElement.java
index 03edc0a..87a65da 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/api/ProtocolElement.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/api/ProtocolElement.java
@@ -22,6 +22,7 @@
  *
  *
  *      Copyright 2006-2008 Sun Microsystems, Inc.
+ *      Portions Copyright 2015 ForgeRock AS
  */
 package org.opends.server.api;
 
@@ -46,7 +47,7 @@
    * @return  The name of the protocol associated with this protocol
    *          element.
    */
-  public String getProtocolElementName();
+  String getProtocolElementName();
 
 
 
@@ -55,7 +56,7 @@
    *
    * @return  A string representation of this protocol element.
    */
-  public String toString();
+  String toString();
 
 
 
@@ -66,7 +67,7 @@
    * @param  buffer  The buffer into which the string representation
    *                 should be written.
    */
-  public void toString(StringBuilder buffer);
+  void toString(StringBuilder buffer);
 
 
 
@@ -79,6 +80,6 @@
    * @param  indent  The number of spaces that should be used to
    *                 indent the resulting string representation.
    */
-  public void toString(StringBuilder buffer, int indent);
+  void toString(StringBuilder buffer, int indent);
 }
 

--
Gitblit v1.10.0