tchannel-core/src/main/java/com/uber/tchannel/messages/RawResponse.java [58:66]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected RawResponse(
        long id,
        ResponseCode responseCode,
        Map<String, String> transportHeaders,
        ByteBuf arg2,
        ByteBuf arg3
    ) {
        super(id, responseCode, transportHeaders, arg2, arg3);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tchannel-core/src/main/java/com/uber/tchannel/messages/EncodedResponse.java [53:61]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected EncodedResponse(
        long id,
        ResponseCode responseCode,
        Map<String, String> transportHeaders,
        ByteBuf arg2,
        ByteBuf arg3
    ) {
        super(id, responseCode, transportHeaders, arg2, arg3);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



