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/LDAPCompare.java | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/sdk/src/org/opends/sdk/tools/LDAPCompare.java b/sdk/src/org/opends/sdk/tools/LDAPCompare.java
index d06594b..7460f49 100644
--- a/sdk/src/org/opends/sdk/tools/LDAPCompare.java
+++ b/sdk/src/org/opends/sdk/tools/LDAPCompare.java
@@ -53,8 +53,8 @@
/**
- * This class provides a tool that can be used to issue compare requests
- * to the Directory Server.
+ * A tool that can be used to issue Compare requests to the Directory
+ * Server.
*/
public final class LDAPCompare extends ConsoleApplication
{
@@ -90,7 +90,7 @@
* @return The error code.
*/
- public static int mainCompare(String[] args)
+ static int mainCompare(String[] args)
{
return mainCompare(args, System.in, System.out, System.err);
}
@@ -116,7 +116,7 @@
* <CODE>null</CODE> if standard error is not needed.
* @return The error code.
*/
- public static int mainCompare(String[] args, InputStream inStream,
+ static int mainCompare(String[] args, InputStream inStream,
OutputStream outStream, OutputStream errStream)
{
return new LDAPCompare(inStream, outStream, errStream).run(args);
--
Gitblit v1.10.0