Changeset 13439 in josm for trunk/src/org
- Timestamp:
- 2018-02-18T17:20:31+01:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/cache/CacheEntryAttributes.java
r12865 r13439 27 27 private static final String LAST_MODIFICATION = "lastModification"; 28 28 private static final String EXPIRATION_TIME = "expirationTime"; 29 private static final String HTTP_RESPONSE_CODE = "httpRespon ceCode";29 private static final String HTTP_RESPONSE_CODE = "httpResponseCode"; 30 30 private static final String ERROR_MESSAGE = "errorMessage"; 31 31 // this contains all of the above -
trunk/src/org/openstreetmap/josm/data/imagery/WMTSTileSource.java
r13429 r13439 784 784 785 785 for (Dimension d : currentLayer.dimensions) { 786 url = url.replaceAll(" \\{"+d.identifier+"\\}", d.defaultValue);786 url = url.replaceAll("(?i)\\{"+d.identifier+"\\}", d.defaultValue); 787 787 } 788 788
Note:
See TracChangeset
for help on using the changeset viewer.