From bdd520e1c5ae48843377da701bb96a3308be9116 Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com> Date: Mon, 16 Dec 2019 01:02:39 +0100 Subject: [PATCH] Fixed bug in javadocs. --- src/main/java/com/aparapi/natives/util/NativeUtils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/aparapi/natives/util/NativeUtils.java b/src/main/java/com/aparapi/natives/util/NativeUtils.java index 5d4a7a0..5393474 100644 --- a/src/main/java/com/aparapi/natives/util/NativeUtils.java +++ b/src/main/java/com/aparapi/natives/util/NativeUtils.java @@ -40,7 +40,7 @@ public class NativeUtils { * @param path The path of file inside JAR as absolute path (beginning with '/'), e.g. /package/File.ext * @throws IOException If temporary file creation or read/write operation fails * @throws IllegalArgumentException If source file (param path) does not exist - * @throws IllegalArgumentException If the path is not absolute or if the filename is shorter than three characters (restriction of {@see File#createTempFile(java.lang.String, java.lang.String)}). + * @throws IllegalArgumentException If the path is not absolute or if the filename is shorter than three characters (restriction of @see File#createTempFile(java.lang.String, java.lang.String)). */ public static void loadLibraryFromJar(String path) throws IOException { @@ -99,4 +99,4 @@ public class NativeUtils { // Finally, load the library System.load(temp.getAbsolutePath()); } -} \ No newline at end of file +} -- GitLab