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 GitHub
parent 4c758a214d
commit d10c946e1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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