Ignore:
Timestamp:
2014-06-14T14:05:38+02:00 (10 years ago)
Author:
bastik
Message:

update to [josm7248]

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/RoadSignsPlugin.java

    r30438 r30495  
    3030import org.openstreetmap.josm.gui.ExtendedDialog;
    3131import org.openstreetmap.josm.gui.dialogs.properties.PropertiesDialog;
    32 import org.openstreetmap.josm.io.MirroredInputStream;
     32import org.openstreetmap.josm.io.CachedFile;
    3333import org.openstreetmap.josm.plugins.Plugin;
    3434import org.openstreetmap.josm.plugins.PluginInformation;
     
    244244        InputStream in = null;
    245245        if (source.startsWith("http://") || source.startsWith("https://") || source.startsWith("ftp://")) {
    246             in = new MirroredInputStream(source);
     246            in = new CachedFile(source).getInputStream();
    247247        } else if (source.startsWith("file:")) {
    248248            in = new URL(source).openStream();
Note: See TracChangeset for help on using the changeset viewer.