Ignore:
Timestamp:
2016-02-04T00:48:38+01:00 (9 years ago)
Author:
Don-vip
Message:

remote control: add more unit tests, robustness

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/Utils.java

    r9720 r9732  
    12211221     */
    12221222    public static String fixURLQuery(String url) {
    1223         if (url.indexOf('?') == -1)
     1223        if (url == null || url.indexOf('?') == -1)
    12241224            return url;
    12251225
Note: See TracChangeset for help on using the changeset viewer.