ba27456653
Motivation: The construction `new AsciiString(string.substring(...))` can be replaced with the `new AsciiString(string, start, length)` to avoid extra allocation. Modifications: Apply the described replacement in `HttpConversionUtil#setHttp2Authority`. Result: Less allocations.