Changeset 36086 in osm for applications/editors/josm
- Timestamp:
- 2023-05-30T18:11:40+02:00 (18 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/javafx/src/org/openstreetmap/josm/plugins/javafx/io/audio/JavaFxMediaPlayer.java
r34700 r36086 40 40 private MediaPlayer mediaPlayer; 41 41 42 JavaFxMediaPlayer() { 42 /** 43 * Create a new {@link JavaFxMediaPlayer}. 44 * This must be public in order for the object creation through reflection to succeed. 45 */ 46 public JavaFxMediaPlayer() { 43 47 try { 44 48 initFxPlatform(); 45 49 } catch (InterruptedException e) { 50 Thread.currentThread().interrupt(); 46 51 throw new JosmRuntimeException(e); 47 52 }
Note:
See TracChangeset
for help on using the changeset viewer.