Changeset 30360 in osm
- Timestamp:
- 2014-03-24T22:27:35+01:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/RoadSignsPlugin.java
r29692 r30360 243 243 public static InputStream getInputStream(String source) throws IOException { 244 244 InputStream in = null; 245 if (source.startsWith("http://") || source.startsWith(" ftp://")) {245 if (source.startsWith("http://") || source.startsWith("https://") || source.startsWith("ftp://")) { 246 246 in = new MirroredInputStream(source); 247 247 } else if (source.startsWith("file:")) {
Note:
See TracChangeset
for help on using the changeset viewer.