- Timestamp:
- 2014-12-20T14:55:22+01:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/AutosaveTask.java
r7834 r7856 159 159 try (PrintStream ps = new PrintStream(pidFile, "UTF-8")) { 160 160 ps.println(ManagementFactory.getRuntimeMXBean().getName()); 161 } catch ( Throwablet) {161 } catch (Exception t) { 162 162 Main.error(t); 163 163 } … … 209 209 displayNotification(); 210 210 } 211 } catch ( Throwablet) {211 } catch (Exception t) { 212 212 // Don't let exception stop time thread 213 213 Main.error("Autosave failed:"); … … 308 308 skipFile = jvmPerfDataFileExists(pid); 309 309 } 310 } catch ( Throwablet) {310 } catch (Exception t) { 311 311 Main.error(t); 312 312 }
Note:
See TracChangeset
for help on using the changeset viewer.