Changeset 48 in josm


Ignore:
Timestamp:
2006-02-09T19:50:24+01:00 (19 years ago)
Author:
imi
Message:
 
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • .classpath

    r26 r48  
    22<classpath>
    33        <classpathentry kind="src" path="src"/>
    4         <classpathentry including="images/" kind="src" path=""/>
     4        <classpathentry kind="src" path="test"/>
     5        <classpathentry including="images/" excluding="*" kind="src" path=""/>
    56        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
    67        <classpathentry sourcepath="/home/imi/src/jdom-1.0/src" kind="lib" path="lib/jdom.jar"/>
  • 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.