Changeset 48 in josm for src


Ignore:
Timestamp:
2006-02-09T19:50:24+01:00 (18 years ago)
Author:
imi
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/org/openstreetmap/josm/gui/BugReportExceptionHandler.java

    r44 r48  
    2828        public void uncaughtException(Thread t, Throwable e) {
    2929                e.printStackTrace();
    30                 if (Main.main == null)
    31                         e.printStackTrace();
    32                 else {
     30                if (Main.main != null) {
    3331                        Object[] options = new String[]{"Do nothing", "Report Bug"};
    3432                        int answer = JOptionPane.showOptionDialog(Main.main, "An unexpected exception occoured.\n\n" +
Note: See TracChangeset for help on using the changeset viewer.