Make HttpHeadersEncoder.encodeHeader package private to match class visibility.

This commit is contained in:
Anuraag Agrawal 2017-05-02 18:06:35 +09:00 committed by Norman Maurer
parent e4531918a3
commit ba5d1880bc

View File

@ -26,7 +26,7 @@ final class HttpHeadersEncoder {
private HttpHeadersEncoder() {
}
public static void encoderHeader(CharSequence name, CharSequence value, ByteBuf buf) throws Exception {
static void encoderHeader(CharSequence name, CharSequence value, ByteBuf buf) throws Exception {
final int nameLen = name.length();
final int valueLen = value.length();
final int entryLen = nameLen + valueLen + 4;