Ignore:
Timestamp:
2014-04-27T15:35:47+02:00 (11 years ago)
Author:
Don-vip
Message:

see #8465 - use String switch/case where applicable

File:
1 edited

Legend:

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

    r7004 r7012  
    240240    @Override
    241241    public void preferenceChanged(PreferenceChangeEvent evt) {
    242         if ("osm-server.username".equals(evt.getKey())) {
     242        switch (evt.getKey()) {
     243        case "osm-server.username":
    243244            if (!(evt.getNewValue() instanceof StringSetting)) return;
    244             String newValue = ((StringSetting) evt.getNewValue()).getValue();
    245             if (newValue == null || newValue.trim().length() == 0) {
     245            String newUserName = ((StringSetting) evt.getNewValue()).getValue();
     246            if (newUserName == null || newUserName.trim().isEmpty()) {
    246247                setAnonymous();
    247248            } else {
    248                 if (! newValue.equals(userName)) {
    249                     setPartiallyIdentified(newValue);
     249                if (! newUserName.equals(userName)) {
     250                    setPartiallyIdentified(newUserName);
    250251                }
    251252            }
    252253            return;
    253254
    254         } else if ("osm-server.url".equals(evt.getKey())) {
     255        case "osm-server.url":
    255256            if (!(evt.getNewValue() instanceof StringSetting)) return;
    256             String newValue = ((StringSetting) evt.getNewValue()).getValue();
    257             if (newValue == null || newValue.trim().isEmpty()) {
     257            String newUrl = ((StringSetting) evt.getNewValue()).getValue();
     258            if (newUrl == null || newUrl.trim().isEmpty()) {
    258259                setAnonymous();
    259260            } else if (isFullyIdentified()) {
    260261                setPartiallyIdentified(getUserName());
    261262            }
    262 
    263         } else if ("oauth.access-token.key".equals(evt.getKey())) {
     263            break;
     264
     265        case "oauth.access-token.key":
    264266            accessTokenKeyChanged = true;
    265 
    266         } else if ("oauth.access-token.secret".equals(evt.getKey())) {
     267            break;
     268
     269        case "oauth.access-token.secret":
    267270            accessTokenSecretChanged = true;
     271            break;
    268272        }
    269273
Note: See TracChangeset for help on using the changeset viewer.