From 85c4a0ddc1bc385410bb0e258e01cbf87e1de460 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Fri, 31 May 2019 09:48:30 -0700 Subject: [PATCH] Some comment fixes. --- .../java/com/threerings/getdown/launcher/Getdown.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/launcher/src/main/java/com/threerings/getdown/launcher/Getdown.java b/launcher/src/main/java/com/threerings/getdown/launcher/Getdown.java index e4d444e..64eabdc 100644 --- a/launcher/src/main/java/com/threerings/getdown/launcher/Getdown.java +++ b/launcher/src/main/java/com/threerings/getdown/launcher/Getdown.java @@ -192,20 +192,20 @@ public abstract class Getdown } protected boolean detectProxy () { - // see if we actually need a proxy; first we have to initialize our application - // to get some sort of interface configuration and the appbase URL + // first we have to initialize our application to get the appbase URL, etc. log.info("Checking whether we need to use a proxy..."); try { readConfig(true); } catch (IOException ioe) { // no worries } - + boolean tryNoProxy = SysProps.tryNoProxyFirst(); if (!tryNoProxy && ProxyUtil.autoDetectProxy(_app)) { return true; } - + + // see if we actually need a proxy updateStatus("m.detecting_proxy"); URL configURL = _app.getConfigResource().getRemote(); if (!ProxyUtil.canLoadWithoutProxy(configURL, tryNoProxy ? 2 : 5)) {