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/io/FileImporter.java

    r6634 r6643  
    8383   
    8484    private static void displayError(File f, Exception e) {
    85         e.printStackTrace();
     85        Main.error(e);
    8686        HelpAwareOptionPane.showMessageDialogInEDT(
    8787                Main.parent,
     
    110110            return true;
    111111        } catch (Exception e) {
    112             e.printStackTrace();
     112            Main.error(e);
    113113            HelpAwareOptionPane.showMessageDialogInEDT(
    114114                    Main.parent,
Note: See TracChangeset for help on using the changeset viewer.