http2/src/main/java/org/apache/mina/http2/impl/Http2HeadersFrameDecoder.java [85:92]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            case STREAM_DEPENDENCY:
                if (decoder.consume(buffer)) {
                    builder.streamDependencyID(((IntPartialDecoder)decoder).getValue() & HTTP2_31BITS_MASK);
                    builder.exclusiveMode((((IntPartialDecoder)decoder).getValue() & HTTP2_EXCLUSIVE_MASK) == HTTP2_EXCLUSIVE_MASK);
                    state = State.WEIGHT;
                }
                break;
            case WEIGHT:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



http2/src/main/java/org/apache/mina/http2/impl/Http2PriorityFrameDecoder.java [62:69]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            case STREAM_DEPENDENCY:
                if (decoder.consume(buffer)) {
                    builder.streamDependencyID(((IntPartialDecoder)decoder).getValue() & HTTP2_31BITS_MASK);
                    builder.exclusiveMode((((IntPartialDecoder)decoder).getValue() & HTTP2_EXCLUSIVE_MASK) == HTTP2_EXCLUSIVE_MASK);
                    state = State.WEIGHT;
                }
                break;
            case WEIGHT:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



