Remove redundant assignment
git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@652195 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
41af181267
commit
5b42ae8fd0
|
@ -791,7 +791,6 @@ public class DefaultClientRequestDirector
|
|||
throws HttpException, IOException {
|
||||
|
||||
HttpRoute route = roureq.getRoute();
|
||||
HttpHost target = route.getTargetHost();
|
||||
HttpHost proxy = route.getProxyHost();
|
||||
RequestWrapper request = roureq.getRequest();
|
||||
|
||||
|
@ -837,7 +836,7 @@ public class DefaultClientRequestDirector
|
|||
|
||||
if (this.targetAuthHandler.isAuthenticationRequested(response, context)) {
|
||||
|
||||
target = (HttpHost)
|
||||
HttpHost target = (HttpHost)
|
||||
context.getAttribute(ExecutionContext.HTTP_TARGET_HOST);
|
||||
if (target == null) {
|
||||
target = route.getTargetHost();
|
||||
|
|
Loading…
Reference in New Issue