Changeset 10645 in osm for applications/editors
- Timestamp:
- 2008-09-12T11:09:14+02:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/wmsplugin/src/wmsplugin/WMSPlugin.java
r10382 r10645 94 94 if ((name != null) && (url != null)) { 95 95 wmsList.add(new WMSInfo(name, url, prefid)); 96 if( name.equals("YAHOO"))isYahoo = true;96 if(url.startsWith("yahoo://")) isYahoo = true; 97 97 } 98 98 name = null; url = null; lastid = prefid; … … 106 106 if ((name != null) && (url != null)) { 107 107 wmsList.add(new WMSInfo(name, url, prefid)); 108 if( name.equals("YAHOO"))isYahoo = true;108 if(url.startsWith("yahoo://")) isYahoo = true; 109 109 } 110 110
Note:
See TracChangeset
for help on using the changeset viewer.