Skip to content

Commit

Permalink
Native loading
Browse files Browse the repository at this point in the history
  • Loading branch information
pkriens committed Jun 8, 2023
1 parent a46f147 commit 062d0bb
Showing 1 changed file with 1 addition and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -380,27 +380,7 @@ private static boolean _loadLibrary(String library) {
System.loadLibrary(library);
return true;
} catch (UnsatisfiedLinkError ex) {
}
try {
System.loadLibrary(library + "x1");
return true;
} catch (UnsatisfiedLinkError ex) {}
try {
System.loadLibrary(library + "x2");
return true;
} catch (UnsatisfiedLinkError ex) {}
try {
System.loadLibrary(library + "x3");
return true;
} catch (UnsatisfiedLinkError ex) {}
try {
System.loadLibrary(library + "x4");
return true;
} catch (UnsatisfiedLinkError ex) {}
try {
System.loadLibrary(library + "x5");
return true;
} catch (UnsatisfiedLinkError ex) {
ex.printStackTrace();
return false;
}
}
Expand Down

0 comments on commit 062d0bb

Please sign in to comment.