Skip to content

Commit dd90b36

Browse files
committed
Removed extra dot (.) from library filename
Signed-off-by: Juan Martin Runge <jmrunge@gmail.com>
1 parent a0cf708 commit dd90b36

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/org/mltframework/utils/NativeUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public static void loadLibraryFromJar(String path) throws IOException {
6464

6565
// Prepare temporary file
6666
// File temp = File.createTempFile(prefix, suffix);
67-
File temp = new File("./" + prefix + "." + suffix);
67+
File temp = new File("./" + prefix + suffix);
6868
if (!temp.exists()) {
6969
temp.createNewFile();
7070

0 commit comments

Comments
 (0)