Corrected identation

This commit is contained in:
Akarshit Wal
2015-05-10 01:48:53 +05:30
parent 06afa9eee5
commit 9551e0d56b
+3 -3
View File
@@ -154,13 +154,13 @@ public class Preferences {
System.setProperty("http.proxyHost", proxyHost);
System.setProperty("http.proxyPort", proxyPort);
}
// Set socks proxy for folks that require it.
// http://docs.oracle.com/javase/6/docs/technotes/guides/net/proxies.html
String socksProxyHost = get("socksProxy.host");
String socksProxyPort = get("socksProxy.port");
if (socksProxyHost != null && socksProxyHost.length() != 0 && socksProxyPort != null
&& socksProxyPort.length() != 0) {
if (socksProxyHost != null && socksProxyHost.length() != 0 &&
socksProxyPort != null && socksProxyPort.length() != 0) {
System.setProperty("socksProxyHost", socksProxyHost);
System.setProperty("socksProxyPort", socksProxyPort);
}