Changeset 36486 in osm for applications/editors/josm/plugins/javafx
- Timestamp:
- 2026-02-12T22:20:13+01:00 (11 days ago)
- Location:
- applications/editors/josm/plugins/javafx
- Files:
-
- 2 edited
-
pom.xml (modified) (1 diff)
-
src/org/openstreetmap/josm/plugins/javafx/gui/JavaFxWrapper.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/javafx/pom.xml
r36483 r36486 22 22 <plugin.stage>5</plugin.stage> 23 23 <plugin.minimum.java.version>17</plugin.minimum.java.version> 24 <javafx.version>21.0. 2</javafx.version>24 <javafx.version>21.0.10</javafx.version> 25 25 </properties> 26 26 <!-- These dependencies should be installed on the host machine - our installers bundle them --> -
applications/editors/josm/plugins/javafx/src/org/openstreetmap/josm/plugins/javafx/gui/JavaFxWrapper.java
r35805 r36486 30 30 private static class UncaughtExceptionHandler implements Thread.UncaughtExceptionHandler { 31 31 private final Thread.UncaughtExceptionHandler currentHandler; 32 publicUncaughtExceptionHandler() {32 UncaughtExceptionHandler() { 33 33 currentHandler = Thread.currentThread().getUncaughtExceptionHandler(); 34 34 Thread.currentThread().setUncaughtExceptionHandler(this); 35 35 } 36 36 37 @Override 37 38 public void uncaughtException(Thread t, Throwable e) {
Note:
See TracChangeset
for help on using the changeset viewer.
