Changeset 507 in josm for trunk/src/org/openstreetmap/josm/plugins
- Timestamp:
- 2008-01-03T00:58:16+01:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/PluginDownloader.java
r319 r507 140 140 } 141 141 142 private static boolean download( Stringurl, File file) {142 private static boolean download(URL url, File file) { 143 143 try { 144 InputStream in = new URL(url).openStream();144 InputStream in = url.openStream(); 145 145 OutputStream out = new FileOutputStream(file); 146 146 byte[] buffer = new byte[8192];
Note:
See TracChangeset
for help on using the changeset viewer.