Ignore:
Timestamp:
2008-12-25T18:58:04+01:00 (15 years ago)
Author:
stoecker
Message:

fixed bug #1871, removed all deprecations

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/preferences/ProxyPreferences.java

    r1169 r1180  
    7878    }
    7979
    80     public void ok() {
     80    public boolean ok() {
    8181        Main.pref.put(PROXY_ENABLE, proxyEnable.isSelected());
    8282        Main.pref.put(PROXY_HOST, proxyHost.getText());
     
    8585        Main.pref.put(PROXY_USER, proxyUser.getText());
    8686        Main.pref.put(PROXY_PASS, new String(proxyPass.getPassword()));
     87        return false;
    8788    }
    88 
    8989}
Note: See TracChangeset for help on using the changeset viewer.