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/RestartAction.java

    r6234 r6643  
    5454            restartJOSM();
    5555        } catch (IOException ex) {
    56             ex.printStackTrace();
     56            Main.error(ex);
    5757        }
    5858    }
     
    123123                        Runtime.getRuntime().exec(cmd.toArray(new String[cmd.size()]));
    124124                    } catch (IOException e) {
    125                         e.printStackTrace();
     125                        Main.error(e);
    126126                    }
    127127                }
Note: See TracChangeset for help on using the changeset viewer.