mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-27 19:52:17 -05:00
Remove some duplicate code in the pop3 implementation
This commit is contained in:
parent
6a2233cdd0
commit
3444bb4134
@ -235,18 +235,16 @@ public class Pop3Store extends Store
|
|||||||
TrustManagerFactory.get(mHost, secure)
|
TrustManagerFactory.get(mHost, secure)
|
||||||
}, new SecureRandom());
|
}, new SecureRandom());
|
||||||
mSocket = sslContext.getSocketFactory().createSocket();
|
mSocket = sslContext.getSocketFactory().createSocket();
|
||||||
mSocket.connect(socketAddress, SOCKET_CONNECT_TIMEOUT);
|
|
||||||
mIn = new BufferedInputStream(mSocket.getInputStream(), 1024);
|
|
||||||
mOut = new BufferedOutputStream(mSocket.getOutputStream(), 512);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
mSocket = new Socket();
|
mSocket = new Socket();
|
||||||
mSocket.connect(socketAddress, SOCKET_CONNECT_TIMEOUT);
|
|
||||||
mIn = new BufferedInputStream(mSocket.getInputStream(), 1024);
|
|
||||||
mOut = new BufferedOutputStream(mSocket.getOutputStream(), 512);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
mSocket.connect(socketAddress, SOCKET_CONNECT_TIMEOUT);
|
||||||
|
mIn = new BufferedInputStream(mSocket.getInputStream(), 1024);
|
||||||
|
mOut = new BufferedOutputStream(mSocket.getOutputStream(), 512);
|
||||||
|
|
||||||
mSocket.setSoTimeout(Store.SOCKET_READ_TIMEOUT);
|
mSocket.setSoTimeout(Store.SOCKET_READ_TIMEOUT);
|
||||||
if (!isOpen())
|
if (!isOpen())
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user