From 83273bbe1075c4639cd11822c3e52d7779643f3f Mon Sep 17 00:00:00 2001 From: Oleg Kalnichevski Date: Sat, 21 Jul 2007 12:01:38 +0000 Subject: [PATCH] Formatting git-svn-id: https://svn.apache.org/repos/asf/jakarta/httpcomponents/httpclient/trunk@558321 13f79535-47bb-0310-9956-ffa450edef68 --- .../http/examples/client/ClientInteractiveAuthentication.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/module-client/src/examples/org/apache/http/examples/client/ClientInteractiveAuthentication.java b/module-client/src/examples/org/apache/http/examples/client/ClientInteractiveAuthentication.java index c2c885ff6..f94b651c0 100644 --- a/module-client/src/examples/org/apache/http/examples/client/ClientInteractiveAuthentication.java +++ b/module-client/src/examples/org/apache/http/examples/client/ClientInteractiveAuthentication.java @@ -82,7 +82,8 @@ public class ClientInteractiveAuthentication { if (sc == HttpStatus.SC_UNAUTHORIZED) { // Target host authentication required authState = (AuthState) localContext.getAttribute(ClientContext.TARGET_AUTH_STATE); - } if (sc == HttpStatus.SC_PROXY_AUTHENTICATION_REQUIRED) { + } + if (sc == HttpStatus.SC_PROXY_AUTHENTICATION_REQUIRED) { // Proxy authentication required authState = (AuthState) localContext.getAttribute(ClientContext.PROXY_AUTH_STATE); }