From 859bdd9b3b404bc61bb4f6cf02eda18f75a26c7f Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Fri, 04 Dec 2009 10:17:24 +0000
Subject: [PATCH] Make class Javadoc for tools consistent.

---
 sdk/src/org/opends/sdk/tools/LDAPSearch.java |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sdk/src/org/opends/sdk/tools/LDAPSearch.java b/sdk/src/org/opends/sdk/tools/LDAPSearch.java
index e792a0d..fc17aa8 100644
--- a/sdk/src/org/opends/sdk/tools/LDAPSearch.java
+++ b/sdk/src/org/opends/sdk/tools/LDAPSearch.java
@@ -57,8 +57,8 @@
 
 
 /**
- * This class provides a tool that can be used to issue search requests
- * to the Directory Server.
+ * A tool that can be used to issue Search requests to the Directory
+ * Server.
  */
 public final class LDAPSearch extends ConsoleApplication
 {
@@ -208,7 +208,7 @@
    * @return The error code.
    */
 
-  public static int mainSearch(String[] args)
+  static int mainSearch(String[] args)
   {
     return mainSearch(args, true, System.in, System.out, System.err);
   }
@@ -232,7 +232,7 @@
    *          <CODE>null</CODE> if standard error is not needed.
    * @return The error code.
    */
-  public static int mainSearch(String[] args, InputStream inStream,
+  static int mainSearch(String[] args, InputStream inStream,
       OutputStream outStream, OutputStream errStream)
   {
     return mainSearch(args, true, inStream, outStream, errStream);
@@ -261,7 +261,7 @@
    * @return The error code.
    */
 
-  public static int mainSearch(String[] args,
+  static int mainSearch(String[] args,
       boolean returnMatchingEntries, InputStream inStream,
       OutputStream outStream, OutputStream errStream)
   {

--
Gitblit v1.10.0