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:
Sebastian Bazley 2008-04-30 00:15:16 +00:00
parent 41af181267
commit 5b42ae8fd0
1 changed files with 1 additions and 2 deletions

View File

@ -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();