From 3e8f6ef36b4d8bacc1470bfebcacda7b6e2fc351 Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Fri, 17 Aug 2007 14:35:22 +0000
Subject: [PATCH] Fixed some minor issues that were pointed out in review of the messages commit.  This biggest issues here is the reversion of the Validator class to use String based messages instead of the message framework as the class is only used internally.

---
 opends/src/server/org/opends/server/core/PasswordPolicy.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/opends/src/server/org/opends/server/core/PasswordPolicy.java b/opends/src/server/org/opends/server/core/PasswordPolicy.java
index 1383260..e34864a 100644
--- a/opends/src/server/org/opends/server/core/PasswordPolicy.java
+++ b/opends/src/server/org/opends/server/core/PasswordPolicy.java
@@ -414,7 +414,7 @@
       }
 
       Message message =
-ERR_PWPOLICY_CANNOT_DETERMINE_DEPRECATED_STORAGE_SCHEMES.
+          ERR_PWPOLICY_CANNOT_DETERMINE_DEPRECATED_STORAGE_SCHEMES.
             get(String.valueOf(configEntryDN), getExceptionMessage(e));
       throw new InitializationException(message, e);
     }
@@ -789,7 +789,7 @@
       }
 
       Message message =
-ERR_PWPOLICY_CANNOT_DETERMINE_PREVIOUS_LAST_LOGIN_TIME_FORMAT.
+          ERR_PWPOLICY_CANNOT_DETERMINE_PREVIOUS_LAST_LOGIN_TIME_FORMAT.
             get(String.valueOf(configEntryDN), getExceptionMessage(e));
       throw new InitializationException(message, e);
     }

--
Gitblit v1.10.0