protonj2/src/main/java/org/apache/qpid/protonj2/codec/decoders/messaging/AcceptedTypeDecoder.java [62:81]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        final byte encodingCode;

        try {
            encodingCode = buffer.readByte();
        } catch (IndexOutOfBoundsException e) {
            throw new DecodeEOFException(e);
        }

        switch (encodingCode) {
            case EncodingCodes.LIST0:
                break;
            case EncodingCodes.LIST8:
                SMALL_LIST_TYPE_DECODER.skipValue(buffer, state);
                break;
            case EncodingCodes.LIST32:
                LARGE_LIST_TYPE_DECODER.skipValue(buffer, state);
                break;
            default:
                throw new DecodeException(
                    "Expected list encoding but got decoder for type code: " + encodingCode);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



protonj2/src/main/java/org/apache/qpid/protonj2/codec/decoders/messaging/ReleasedTypeDecoder.java [62:81]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        final byte encodingCode;

        try {
            encodingCode = buffer.readByte();
        } catch (IndexOutOfBoundsException e) {
            throw new DecodeEOFException(e);
        }

        switch (encodingCode) {
            case EncodingCodes.LIST0:
                break;
            case EncodingCodes.LIST8:
                SMALL_LIST_TYPE_DECODER.skipValue(buffer, state);
                break;
            case EncodingCodes.LIST32:
                LARGE_LIST_TYPE_DECODER.skipValue(buffer, state);
                break;
            default:
                throw new DecodeException(
                    "Expected list encoding but got decoder for type code: " + encodingCode);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



