Changeset 1732 in josm


Ignore:
Timestamp:
2009-07-04T22:32:30+02:00 (15 years ago)
Author:
stoecker
Message:

close #2813 - updating plugins disabled plugins

File:
1 edited

Legend:

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

    r1647 r1732  
    6969                Main.pleaseWaitDlg.currentAction.setText(tr("Downloading Plugin {0}...", d.name));
    7070                File pluginFile = new File(pluginDir, d.name + ".jar.new");
    71                 if (download(d, pluginFile))
     71                if(download(d, pluginFile))
     72                    count++;
     73                else
    7274                {
    73                     count++;
     75                    errors += d.name + "\n";
    7476                    failed.add(d);
    7577                }
    76                 else
    77                     errors += d.name + "\n";
    7878            }
    7979            PluginDownloader.moveUpdatedPlugins();
     
    151151            return t.failed;
    152152        }
    153         catch(java.lang.InterruptedException e) {}
    154         catch(java.util.concurrent.ExecutionException e) {}
     153        catch(java.lang.InterruptedException e) {e.printStackTrace();}
     154        catch(java.util.concurrent.ExecutionException e) {e.printStackTrace();}
    155155        return download;
    156156    }
Note: See TracChangeset for help on using the changeset viewer.