From 59685c84348f8d71dc3bbd3513c5eb10cc738a8e Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Fri, 03 Nov 2006 16:39:22 +0000
Subject: [PATCH] Refactor DN and RDN classes and improve their test coverage.

---
 opends/src/server/org/opends/server/messages/CoreMessages.java |   13 +++++++------
 1 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/opends/src/server/org/opends/server/messages/CoreMessages.java b/opends/src/server/org/opends/server/messages/CoreMessages.java
index f4d0c07..a7357e7 100644
--- a/opends/src/server/org/opends/server/messages/CoreMessages.java
+++ b/opends/src/server/org/opends/server/messages/CoreMessages.java
@@ -1754,10 +1754,11 @@
 
 
   /**
-   * The message ID for the string that will be used if an attempt is made to
-   * decode a string as an RDN but that string contained an unexpected comma or
-   * semicolon.  This takes two arguments, which are the RDN string to decode
-   * and the position of the illegal comma or semicolon.
+   * The message ID for the string that will be used if an attempt is
+   * made to decode a string as an RDN but that string contained an
+   * unexpected plus, comma, or semicolon. This takes two arguments,
+   * which are the RDN string to decode and the position of the
+   * illegal plus, comma, or semicolon.
    */
   public static final int MSGID_RDN_UNEXPECTED_COMMA =
        CATEGORY_MASK_CORE | SEVERITY_MASK_MILD_ERROR | 174;
@@ -6572,8 +6573,8 @@
     registerMessage(MSGID_RDN_UNEXPECTED_COMMA,
                     "Unable to decode the provided string \"%s\" as a " +
                     "relative distinguished name because it contained an " +
-                    "unexpected comma or semicolon at position %d, which is " +
-                    "not allowed in an RDN.");
+                    "unexpected plus, comma, or semicolon at position %d, "+
+                    "which is not allowed in an RDN.");
     registerMessage(MSGID_RDN_ILLEGAL_CHARACTER,
                     "Unable to decode the provided string \"%s\" as a " +
                     "relative distinguished name because an illegal " +

--
Gitblit v1.10.0