Ignore:
Timestamp:
2014-01-06T16:39:45+01:00 (10 years ago)
Author:
Don-vip
Message:

global replacement of e.printStackTrace() by Main.error(e)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/downloadtasks/DownloadSessionTask.java

    r6245 r6643  
    5555                return Main.worker.submit(loader);
    5656            } catch (URISyntaxException e) {
    57                 e.printStackTrace();
     57                Main.error(e);
    5858            } catch (MalformedURLException e) {
    59                 e.printStackTrace();
     59                Main.error(e);
    6060            } catch (IOException e) {
    61                 e.printStackTrace();
     61                Main.error(e);
    6262            }
    6363        }
Note: See TracChangeset for help on using the changeset viewer.