From 4039d272d6b944e41bc9cb68ce5cad331ae44c1b Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Fri, 16 Feb 2007 05:51:14 +0000
Subject: [PATCH] Update the LDAPSearch class to fix checkstyle errors, and update the RDN class to fix Javadoc warnings.

---
 opendj-sdk/opends/src/server/org/opends/server/tools/LDAPSearch.java |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/opendj-sdk/opends/src/server/org/opends/server/tools/LDAPSearch.java b/opendj-sdk/opends/src/server/org/opends/server/tools/LDAPSearch.java
index 93f1536..0a47f41 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/tools/LDAPSearch.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/tools/LDAPSearch.java
@@ -224,10 +224,10 @@
                         out.println(getMessage(msgID));
                         if (acrc.getSecondsBeforeExpiration() > 0)
                         {
-                          int    timeToExp    = acrc.getSecondsBeforeExpiration();
+                          int timeToExp = acrc.getSecondsBeforeExpiration();
                           String timeToExpStr = secondsToTimeString(timeToExp);
                           msgID =
-                               MSGID_LDAPSEARCH_ACCTUSABLE_TIME_UNTIL_EXPIRATION;
+                             MSGID_LDAPSEARCH_ACCTUSABLE_TIME_UNTIL_EXPIRATION;
                           out.println(getMessage(msgID, timeToExpStr));
                         }
                       }
@@ -266,7 +266,8 @@
                             int timeToUnlock = acrc.getSecondsBeforeUnlock();
                             String timeToUnlockStr =
                                         secondsToTimeString(timeToUnlock);
-                            msgID = MSGID_LDAPSEARCH_ACCTUSABLE_TIME_UNTIL_UNLOCK;
+                            msgID =
+                                 MSGID_LDAPSEARCH_ACCTUSABLE_TIME_UNTIL_UNLOCK;
                             out.println(getMessage(msgID, timeToUnlockStr));
                           }
                         }

--
Gitblit v1.10.0