mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

neil_a_wilson
01.18.2007 a49dee3f75d6e2548e9114d9495655dd56f06973
opends/src/server/org/opends/server/schema/NameFormSyntax.java
@@ -103,7 +103,6 @@
  public void initializeSyntax(ConfigEntry configEntry)
         throws ConfigException, InitializationException
  {
    defaultEqualityMatchingRule =
         DirectoryServer.getEqualityMatchingRule(EMR_CASE_IGNORE_OID);
    if (defaultEqualityMatchingRule == null)
@@ -142,7 +141,6 @@
   */
  public String getSyntaxName()
  {
    return SYNTAX_NAME_FORM_NAME;
  }
@@ -153,7 +151,6 @@
   */
  public String getOID()
  {
    return SYNTAX_NAME_FORM_OID;
  }
@@ -164,7 +161,6 @@
   */
  public String getDescription()
  {
    return SYNTAX_NAME_FORM_DESCRIPTION;
  }
@@ -175,7 +171,6 @@
   */
  public EqualityMatchingRule getEqualityMatchingRule()
  {
    return defaultEqualityMatchingRule;
  }
@@ -186,7 +181,6 @@
   */
  public OrderingMatchingRule getOrderingMatchingRule()
  {
    return defaultOrderingMatchingRule;
  }
@@ -197,7 +191,6 @@
   */
  public SubstringMatchingRule getSubstringMatchingRule()
  {
    return defaultSubstringMatchingRule;
  }
@@ -208,7 +201,6 @@
   */
  public ApproximateMatchingRule getApproximateMatchingRule()
  {
    // There is no approximate matching rule by default.
    return null;
  }
@@ -221,8 +213,6 @@
  public boolean valueIsAcceptable(ByteString value,
                                   StringBuilder invalidReason)
  {
    // We'll use the decodeNameForm method to determine if the value is
    // acceptable.
    try
@@ -271,8 +261,6 @@
                                        boolean allowUnknownElements)
         throws DirectoryException
  {
    // Get string representations of the provided value using the provided form
    // and with all lowercase characters.
    String valueStr = value.stringValue();
@@ -792,8 +780,6 @@
                                   int startPos)
          throws DirectoryException
  {
    // Skip over any spaces at the beginning of the value.
    char c = '\u0000';
    int  length = valueStr.length();
@@ -853,8 +839,6 @@
                                      StringBuilder valueBuffer, int startPos)
          throws DirectoryException
  {
    // Skip over any spaces at the beginning of the value.
    char c = '\u0000';
    int  length = valueStr.length();
@@ -942,8 +926,6 @@
                                      StringBuilder lowerBuffer, int startPos)
          throws DirectoryException
  {
    // Skip over any spaces at the beginning of the value.
    char c = '\u0000';
    int  length = lowerStr.length();
@@ -1025,10 +1007,6 @@
                              int startPos)
          throws DirectoryException
  {
    // Skip over any spaces at the beginning of the value.
    char c = '\u0000';
    int  length = lowerStr.length();
@@ -1181,8 +1159,6 @@
                          List<String> valueList, int startPos)
          throws DirectoryException
  {
    // Skip over any leading spaces.
    int length = valueStr.length();
    char c = valueStr.charAt(startPos++);