Changeset 1791 in josm
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/PluginDownloader.java
r1733 r1791 38 38 private String errors = ""; 39 39 private int count = 0; 40 private boolean update;41 40 42 41 private UpdateTask(Collection<PluginInformation> toUpdate, boolean up) { 43 42 super(up ? tr("Update Plugins") : tr("Download Plugins")); 44 update = up;45 43 this.toUpdate = toUpdate; 46 44 } -
trunk/test/functional/org/openstreetmap/josm/io/MultiFetchServerObjectReaderTest.java
r1750 r1791 237 237 ds = new DataSet(); 238 238 FileInputStream fis = new FileInputStream(f); 239 ds = OsmReader.parseDataSet(fis, ds,Main.pleaseWaitDlg);239 ds = OsmReader.parseDataSet(fis, Main.pleaseWaitDlg); 240 240 fis.close(); 241 241 }
Note: See TracChangeset
for help on using the changeset viewer.