diff --git a/flatlaf-core/src/main/java/com/formdev/flatlaf/FlatSystemProperties.java b/flatlaf-core/src/main/java/com/formdev/flatlaf/FlatSystemProperties.java index f7450216..7901db5b 100644 --- a/flatlaf-core/src/main/java/com/formdev/flatlaf/FlatSystemProperties.java +++ b/flatlaf-core/src/main/java/com/formdev/flatlaf/FlatSystemProperties.java @@ -164,7 +164,7 @@ public interface FlatSystemProperties * Searches for the native library in classloader of caller * (using {@link ClassLoader#findLibrary(String)}) and in paths specified * in system properties {@code sun.boot.library.path} and {@code java.library.path}. - * (supported since FlatLaf 3) + * (supported since FlatLaf 2.6) *
* If the native library can not loaded from the given path (or via {@link System#loadLibrary(String)}), * then the embedded native library is extracted to the temporary directory and loaded from there. diff --git a/flatlaf-core/src/main/java/com/formdev/flatlaf/util/NativeLibrary.java b/flatlaf-core/src/main/java/com/formdev/flatlaf/util/NativeLibrary.java index d81ae326..caece290 100644 --- a/flatlaf-core/src/main/java/com/formdev/flatlaf/util/NativeLibrary.java +++ b/flatlaf-core/src/main/java/com/formdev/flatlaf/util/NativeLibrary.java @@ -81,7 +81,7 @@ public class NativeLibrary * * @param libraryName name of the native library (without "lib" prefix and without extension) * @param supported whether the native library is supported on the current platform - * @since 3 + * @since 2.6 */ public NativeLibrary( String libraryName, boolean supported ) { this.loaded = supported