Changeset 9732 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2016-02-04T00:48:38+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/Utils.java
r9720 r9732 1221 1221 */ 1222 1222 public static String fixURLQuery(String url) { 1223 if (url .indexOf('?') == -1)1223 if (url == null || url.indexOf('?') == -1) 1224 1224 return url; 1225 1225
Note: See TracChangeset
for help on using the changeset viewer.