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

matthew_swift
08.52.2009 1b9f39db0f5450de6c3bb97cec681c342fff5944
sdk/src/org/opends/sdk/schema/MatchingRuleUse.java
@@ -33,7 +33,8 @@
import java.util.*;
import com.sun.opends.sdk.util.Message;
import org.opends.sdk.LocalizableMessage;
import com.sun.opends.sdk.util.Validator;
@@ -333,7 +334,7 @@
  @Override
  void validate(List<Message> warnings, Schema schema)
  void validate(List<LocalizableMessage> warnings, Schema schema)
      throws SchemaException
  {
    try
@@ -344,7 +345,7 @@
    {
      // This is bad because the matching rule use is associated with a
      // matching rule that we don't know anything about.
      final Message message =
      final LocalizableMessage message =
          ERR_ATTR_SYNTAX_MRUSE_UNKNOWN_MATCHING_RULE.get(definition,
              oid);
      throw new SchemaException(message, e);
@@ -360,7 +361,7 @@
      }
      catch (final UnknownSchemaElementException e)
      {
        final Message message =
        final LocalizableMessage message =
            ERR_ATTR_SYNTAX_MRUSE_UNKNOWN_ATTR.get(oid, attribute);
        throw new SchemaException(message, e);
      }