Skip to content

Commit 8848ad6

Browse files
committed
format
1 parent a840f79 commit 8848ad6

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/test/java/com/ning/http/client/async/NTLMProxyTest.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public static class NTLMProxyHandler extends AbstractHandler {
4040

4141
@Override
4242
public void handle(String pathInContext, org.eclipse.jetty.server.Request request, HttpServletRequest httpRequest,
43-
HttpServletResponse httpResponse) throws IOException, ServletException {
43+
HttpServletResponse httpResponse) throws IOException, ServletException {
4444

4545
String authorization = httpRequest.getHeader("Proxy-Authorization");
4646
if (authorization == null) {
@@ -81,8 +81,7 @@ public void ntlmProxyTest() throws IOException, InterruptedException, ExecutionE
8181
}
8282
}
8383

84-
private ProxyServer ntlmProxy() throws UnknownHostException
85-
{
84+
private ProxyServer ntlmProxy() throws UnknownHostException {
8685
ProxyServer proxyServer = new ProxyServer("127.0.0.1", port2, "Zaphod", "Beeblebrox").setNtlmDomain("Ursa-Minor");
8786
proxyServer.setNtlmHost("LightCity");
8887
proxyServer.setScheme(AuthScheme.NTLM);

0 commit comments

Comments
 (0)