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

matthew_swift
08.52.2009 460075839833c278f128c1482638767cdc68bfc7
opendj-sdk/sdk/src/org/opends/sdk/schema/BitStringEqualityMatchingRuleImpl.java
@@ -33,8 +33,8 @@
import org.opends.sdk.ByteSequence;
import org.opends.sdk.ByteString;
import org.opends.sdk.DecodeException;
import org.opends.sdk.LocalizableMessage;
import com.sun.opends.sdk.util.Message;
@@ -53,7 +53,7 @@
    final int length = valueString.length();
    if (length < 3)
    {
      final Message message =
      final LocalizableMessage message =
          WARN_ATTR_SYNTAX_BIT_STRING_TOO_SHORT.get(value.toString());
      throw DecodeException.error(message);
    }
@@ -62,7 +62,7 @@
        || valueString.charAt(length - 2) != '\''
        || valueString.charAt(length - 1) != 'B')
    {
      final Message message =
      final LocalizableMessage message =
          WARN_ATTR_SYNTAX_BIT_STRING_NOT_QUOTED.get(value.toString());
      throw DecodeException.error(message);
    }
@@ -76,7 +76,7 @@
        // These characters are fine.
        break;
      default:
        final Message message =
        final LocalizableMessage message =
            WARN_ATTR_SYNTAX_BIT_STRING_INVALID_BIT.get(value
                .toString(), String.valueOf(valueString.charAt(i)));
        throw DecodeException.error(message);