Ignore:
Timestamp:
2017-07-30T00:22:46+02:00 (7 years ago)
Author:
Don-vip
Message:

PMD - VariableNamingConventions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/DefaultProxySelector.java

    r12279 r12537  
    4141     * We therefore read the property at class loading time and remember it's value.
    4242     */
    43     private static boolean JVM_WILL_USE_SYSTEM_PROXIES;
     43    private static boolean jvmWillUseSystemProxies;
    4444    static {
    4545        String v = System.getProperty("java.net.useSystemProxies");
    4646        if (v != null && v.equals(Boolean.TRUE.toString())) {
    47             JVM_WILL_USE_SYSTEM_PROXIES = true;
     47            jvmWillUseSystemProxies = true;
    4848        }
    4949    }
     
    5959     */
    6060    public static boolean willJvmRetrieveSystemProxies() {
    61         return JVM_WILL_USE_SYSTEM_PROXIES;
     61        return jvmWillUseSystemProxies;
    6262    }
    6363
     
    202202        switch(proxyPolicy) {
    203203        case USE_SYSTEM_SETTINGS:
    204             if (!JVM_WILL_USE_SYSTEM_PROXIES) {
     204            if (!jvmWillUseSystemProxies) {
    205205                Main.warn(tr("The JVM is not configured to lookup proxies from the system settings. "+
    206206                        "The property ''java.net.useSystemProxies'' was missing at startup time.  Will not use a proxy."));
Note: See TracChangeset for help on using the changeset viewer.