Ignore:
Timestamp:
2013-10-07T20:18:17+02:00 (11 years ago)
Author:
Don-vip
Message:

Sonar/FindBugs - Loose coupling

File:
1 edited

Legend:

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

    r6248 r6316  
    111111
    112112    public static List<String> getSearchExpressionHistory() {
    113         ArrayList<String> ret = new ArrayList<String>(getSearchHistory().size());
     113        List<String> ret = new ArrayList<String>(getSearchHistory().size());
    114114        for (SearchSetting ss: getSearchHistory()) {
    115115            ret.add(ss.text);
     
    120120    private static SearchSetting lastSearch = null;
    121121
     122    /**
     123     * Constructs a new {@code SearchAction}.
     124     */
    122125    public SearchAction() {
    123126        super(tr("Search..."), "dialogs/search", tr("Search for objects."),
Note: See TracChangeset for help on using the changeset viewer.