Changeset 31123 in osm for applications/viewer/jmapviewer/src/org
- Timestamp:
- 2015-05-10T19:13:48+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/tilesources/AbstractTMSTileSource.java
r31122 r31123 19 19 this.name = info.getName(); 20 20 this.baseUrl = info.getUrl(); 21 if(baseUrl .endsWith("/")) {21 if(baseUrl != null && baseUrl.endsWith("/")) { 22 22 baseUrl = baseUrl.substring(0,baseUrl.length()-1); 23 23 }
Note:
See TracChangeset
for help on using the changeset viewer.