Hello,
I removed deprecated API in 14005.
The plugin is impacted:
kendzi3d=java.lang.NoSuchMethodError: kendzi.josm.jogl.JoglPlugin.getPluginDir()Ljava/lang/String;
This is the method removed with javadoc:
/*
* @return The directory for the plugin to store all kind of stuff.
* @deprecated (since 13007) to get the same directory as this method, use {@code getPluginDirs().getUserDataDirectory(false)}.
* However, for files that can be characterized as cache or preferences, you are encouraged to use the appropriate
* {@link IBaseDirectories} method from {@link #getPluginDirs()}.
*/
@Deprecated
public String getPluginDir() {
return new File(Main.pref.getPluginsDirectory(), info.name).getPath();
}
Hello, I removed deprecated API in 14005. The plugin is impacted:
kendzi3d=java.lang.NoSuchMethodError: kendzi.josm.jogl.JoglPlugin.getPluginDir()Ljava/lang/String;
This is the method removed with javadoc: