Changeset 34370 in osm for applications/editors
- Timestamp:
- 2018-06-30T11:19:11+02:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/imagery_offset_db/src/iodb/ImageryIdGenerator.java
r33299 r34370 42 42 // Remove protocol 43 43 int i = url.indexOf("://"); 44 url = url.substring(i + 3); 44 if (i > 0) { 45 url = url.substring(i + 3); 46 } 45 47 46 48 // Split URL into address and query string
Note:
See TracChangeset
for help on using the changeset viewer.