Changeset 3974 in josm
- Timestamp:
- 2011-03-10T12:03:24+01:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/imagery/ImageryInfo.java
r3934 r3974 6 6 7 7 import org.openstreetmap.josm.io.OsmApi; 8 import org.openstreetmap.josm.tools.CheckParameterUtil; 8 9 9 10 /** … … 31 32 32 33 String name; 33 String url = null;34 private String url = null; 34 35 String cookies = null; 35 36 public final String eulaAcceptanceRequired; … … 165 166 166 167 public void setUrl(String url) { 167 168 CheckParameterUtil.ensureParameterNotNull(url); 169 168 170 for (ImageryType type : ImageryType.values()) { 169 171 if (url.startsWith(type.getUrlString() + ":")) {
Note:
See TracChangeset
for help on using the changeset viewer.