Ignore:
Timestamp:
2017-08-06T22:38:35+02:00 (7 years ago)
Author:
Don-vip
Message:

fix some Sonar issues

Location:
trunk/src/org/openstreetmap/josm/actions
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/OverpassDownloadAction.java

    r12576 r12578  
    228228                    overpassQueryList.setVisible(false);
    229229                    arrowButton.setDirection(BasicArrowButton.WEST);
    230                     OVERPASS_QUERY_LIST_OPENED.put(false);
     230                    OVERPASS_QUERY_LIST_OPENED.put(Boolean.FALSE);
    231231                } else {
    232232                    overpassQueryList.setVisible(true);
    233233                    arrowButton.setDirection(BasicArrowButton.EAST);
    234                     OVERPASS_QUERY_LIST_OPENED.put(false);
     234                    OVERPASS_QUERY_LIST_OPENED.put(Boolean.FALSE);
    235235                }
    236236            });
  • trunk/src/org/openstreetmap/josm/actions/search/SearchAction.java

    r12547 r12578  
    10031003    public static class SearchSettingsActionParameter extends ActionParameter<SearchSetting> {
    10041004
     1005        /**
     1006         * Constructs a new {@code SearchSettingsActionParameter}.
     1007         * @param name parameter name (the key)
     1008         */
    10051009        public SearchSettingsActionParameter(String name) {
    10061010            super(name);
Note: See TracChangeset for help on using the changeset viewer.