Changeset 48 in josm
- Timestamp:
- 2006-02-09T19:50:24+01:00 (19 years ago)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
.classpath
r26 r48 2 2 <classpath> 3 3 <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=""/> 5 6 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> 6 7 <classpathentry sourcepath="/home/imi/src/jdom-1.0/src" kind="lib" path="lib/jdom.jar"/> -
src/org/openstreetmap/josm/gui/BugReportExceptionHandler.java
r44 r48 28 28 public void uncaughtException(Thread t, Throwable e) { 29 29 e.printStackTrace(); 30 if (Main.main == null) 31 e.printStackTrace(); 32 else { 30 if (Main.main != null) { 33 31 Object[] options = new String[]{"Do nothing", "Report Bug"}; 34 32 int answer = JOptionPane.showOptionDialog(Main.main, "An unexpected exception occoured.\n\n" +
Note:
See TracChangeset
for help on using the changeset viewer.