Ignore:
Timestamp:
2018-10-28T17:28:36+01:00 (6 years ago)
Author:
donvip
Message:

openjfx => javafx

File:
1 moved

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/javafx/src/org/openstreetmap/josm/plugins/javafx/JavaFxPlugin.java

    r34700 r34701  
    3232 * OpenJFX plugin brings OpenJFX (JavaFX) to other plugins.
    3333 */
    34 public class JavafxPlugin extends Plugin {
     34public class JavaFxPlugin extends Plugin {
    3535
    3636    /**
     
    3838     * @param info plugin info
    3939     */
    40     public JavafxPlugin(PluginInformation info) {
     40    public JavaFxPlugin(PluginInformation info) {
    4141        super(info);
    4242        AudioPlayer.setSoundPlayerClass(JavaFxMediaPlayer.class);
     
    5454
    5555    private static void extractNativeLibs(String ext) {
    56         CodeSource src = JavafxPlugin.class.getProtectionDomain().getCodeSource();
     56        CodeSource src = JavaFxPlugin.class.getProtectionDomain().getCodeSource();
    5757        if (src != null) {
    5858            try (ZipFile zf = new ZipFile(Paths.get(src.getLocation().toURI()).toFile(), StandardCharsets.UTF_8)) {
     
    7777            }
    7878        } else {
    79             Logging.error("Unable to locate openjfx jar file");
     79            Logging.error("Unable to locate javafx jar file");
    8080        }
    8181    }
    8282
    8383    private static Path getNativeDir() throws IOException {
    84         return Files.createDirectories(new File(Preferences.main().getPluginsDirectory(), "openjfx").toPath());
     84        return Files.createDirectories(new File(Preferences.main().getPluginsDirectory(), "javafx").toPath());
    8585    }
    8686
Note: See TracChangeset for help on using the changeset viewer.