Ignore:
Timestamp:
2018-05-22T22:38:21+02:00 (6 years ago)
Author:
Don-vip
Message:

see #2089, see #16047 - move JavaFX classes to their own package in order to exclude them automatically when JavaFX is not on the classpath (needed for Java 11+ now that FX is gone)

Location:
trunk/src/org/openstreetmap/josm/io/audio/fx
Files:
2 added
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/audio/fx/JavaFxMediaPlayer.java

    r13818 r13819  
    11// License: GPL. For details, see LICENSE file.
    2 package org.openstreetmap.josm.io.audio;
     2package org.openstreetmap.josm.io.audio.fx;
    33
    44import java.io.File;
     
    99import java.util.concurrent.CountDownLatch;
    1010
     11import org.openstreetmap.josm.io.audio.AudioException;
     12import org.openstreetmap.josm.io.audio.AudioListener;
    1113import org.openstreetmap.josm.io.audio.AudioPlayer.Execute;
    1214import org.openstreetmap.josm.io.audio.AudioPlayer.State;
     15import org.openstreetmap.josm.io.audio.SoundPlayer;
    1316import org.openstreetmap.josm.tools.JosmRuntimeException;
    1417import org.openstreetmap.josm.tools.ListenerList;
     
    3235 * @since 12328
    3336 */
    34 class JavaFxMediaPlayer implements SoundPlayer {
     37public class JavaFxMediaPlayer implements SoundPlayer {
    3538
    3639    private final ListenerList<AudioListener> listeners = ListenerList.create();
Note: See TracChangeset for help on using the changeset viewer.