Changeset 13335 in josm for trunk/src/org/openstreetmap/josm/io
- Timestamp:
- 2018-01-19T20:15:02+01:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/OverpassDownloadReader.java
r12841 r13335 394 394 return ds; 395 395 } 396 397 /** 398 * Fixes Overpass API query to make sure it will be accepted by JOSM. 399 * @param query Overpass query to check 400 * @return fixed query 401 * @since 13335 402 */ 403 public static String fixQuery(String query) { 404 return query.replaceFirst("out( body| skel| ids)?( id| qt)?;", "out meta$2;"); 405 } 396 406 }
Note:
See TracChangeset
for help on using the changeset viewer.