Remove a unused private method with empty body in HttpConversionUtil.java (#10266)

Motivation:

After searching the whole netty project, I found that the private method `translateHeader(...)` with empty body is never used actually. So I think it could be safely removed.

Modification:

Just remove this unused method.

Result:

Clean up the code.
This commit is contained in:
feijermu 2020-05-11 21:31:56 +08:00 committed by Norman Maurer
parent 803a2cc911
commit f3a97f4f7b

View File

@ -654,8 +654,5 @@ public final class HttpConversionUtil {
output.add(COOKIE, cookies.toString());
}
}
private void translateHeader(Entry<CharSequence, CharSequence> entry) throws Http2Exception {
}
}
}