Fixed indentation

This commit is contained in:
Trustin Lee 2009-02-17 07:17:03 +00:00
parent 5281ef6aa7
commit 4bd06dfdb1

View File

@ -196,16 +196,13 @@ class HttpTunnelClientSocketChannel extends AbstractChannel
awaitingInitialResponse = true; awaitingInitialResponse = true;
connectAndSendHeaders(true, remoteAddress); connectAndSendHeaders(true, remoteAddress);
} } finally {
finally {
reconnectLock.unlock(); reconnectLock.unlock();
} }
} } else {
else {
try { try {
reconnectLock.lock(); reconnectLock.lock();
} } finally {
finally {
reconnectLock.unlock(); reconnectLock.unlock();
} }
} }
@ -258,7 +255,6 @@ class HttpTunnelClientSocketChannel extends AbstractChannel
nextChunkSize = -1; nextChunkSize = -1;
} }
} }
} }
@Override @Override