mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
Corrected identation
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user