Changeset 1791 in josm for trunk


Ignore:
Timestamp:
2009-07-15T17:39:54+02:00 (15 years ago)
Author:
framm
Message:
  • remove unused variable from PluginDownloader
  • fix MultiFetch test to compile
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/plugins/PluginDownloader.java

    r1733 r1791  
    3838        private String errors = "";
    3939        private int count = 0;
    40         private boolean update;
    4140
    4241        private UpdateTask(Collection<PluginInformation> toUpdate, boolean up) {
    4342            super(up ? tr("Update Plugins") : tr("Download Plugins"));
    44             update = up;
    4543            this.toUpdate = toUpdate;
    4644        }
  • trunk/test/functional/org/openstreetmap/josm/io/MultiFetchServerObjectReaderTest.java

    r1750 r1791  
    237237        ds = new DataSet();
    238238        FileInputStream fis = new FileInputStream(f);
    239         ds = OsmReader.parseDataSet(fis, ds, Main.pleaseWaitDlg);
     239        ds = OsmReader.parseDataSet(fis, Main.pleaseWaitDlg);
    240240        fis.close();
    241241    }
Note: See TracChangeset for help on using the changeset viewer.