Ignore:
Timestamp:
2006-04-23T00:41:38+02:00 (19 years ago)
Author:
imi
Message:
  • added "insert node into line segment" mapmode
  • added direction hint to line segments
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/org/openstreetmap/josm/io/ProgressReader.java

    r92 r93  
    44import java.io.InputStreamReader;
    55import java.io.Reader;
    6 import java.net.HttpURLConnection;
     6import java.net.URLConnection;
    77
    88import javax.swing.BoundedRangeModel;
     
    1717        private final BoundedRangeModel progress;
    1818
    19         public ProgressReader(HttpURLConnection con, BoundedRangeModel progress) throws IOException {
     19        public ProgressReader(URLConnection con, BoundedRangeModel progress) throws IOException {
    2020                this.in = new InputStreamReader(con.getInputStream());
    2121                this.progress = progress;
Note: See TracChangeset for help on using the changeset viewer.