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:
parent
4c758a214d
commit
d10c946e1b
@ -654,8 +654,5 @@ public final class HttpConversionUtil {
|
||||
output.add(COOKIE, cookies.toString());
|
||||
}
|
||||
}
|
||||
|
||||
private void translateHeader(Entry<CharSequence, CharSequence> entry) throws Http2Exception {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user