Ignore:
Timestamp:
2026-02-12T22:20:13+01:00 (11 days ago)
Author:
stoecker
Message:

fix javadoc for JavaFX, increase javafx to 21.0.10 (current java 17 version)

Location:
applications/editors/josm/plugins/javafx
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/javafx/pom.xml

    r36483 r36486  
    2222        <plugin.stage>5</plugin.stage>
    2323        <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>
    2525    </properties>
    2626    <!-- 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  
    3030    private static class UncaughtExceptionHandler implements Thread.UncaughtExceptionHandler {
    3131        private final Thread.UncaughtExceptionHandler currentHandler;
    32         public UncaughtExceptionHandler() {
     32        UncaughtExceptionHandler() {
    3333            currentHandler = Thread.currentThread().getUncaughtExceptionHandler();
    3434            Thread.currentThread().setUncaughtExceptionHandler(this);
    3535        }
     36
    3637        @Override
    3738        public void uncaughtException(Thread t, Throwable e) {
Note: See TracChangeset for help on using the changeset viewer.