-
Notifications
You must be signed in to change notification settings - Fork 875
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make ApacheHttpClient5Request public #12394
Conversation
|
||
final class ApacheHttpClient5Request { | ||
public final class ApacheHttpClient5Request { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should perhaps add Javadoc?
@@ -124,13 +72,4 @@ private static URI getCalculatedUri(HttpHost httpHost, URI uri) { | |||
return null; | |||
} | |||
} | |||
|
|||
@Nullable | |||
public InetSocketAddress getServerSocketAddress() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems many methods in this class was copied from other version modules, delete them together? such as
Line 129 in d156afb
public InetSocketAddress getNetworkPeerAddress() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this method is used in 4.3 instrumentation
Resolves #12393
Also removes unused code.