Ignore:
Timestamp:
2014-12-13T01:07:04+01:00 (9 years ago)
Author:
Don-vip
Message:

fix some Sonar issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/conflict/tags/MultiValueResolutionDecision.java

    r7751 r7801  
    3535
    3636    /**
    37      * constuctor
     37     * constructor
    3838     */
    3939    public MultiValueResolutionDecision() {
     
    148148        case KEEP_ONE: return value;
    149149        case SUM_ALL_NUMERIC: return tags.getSummedValues(getKey());
    150         case KEEP_NONE: return null;
    151150        case KEEP_ALL: return tags.getJoinedValues(getKey());
     151        case KEEP_NONE:
    152152        default: return null;
    153153        }
     
    308308        case KEEP_ONE: return new Tag(getKey(),value);
    309309        case KEEP_NONE: return new Tag(getKey(), "");
    310         case UNDECIDED: return null;
     310        case UNDECIDED:
    311311        default: return null;
    312312        }
Note: See TracChangeset for help on using the changeset viewer.