mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-04 14:07:52 +00:00
minor cleanup
This commit is contained in:
parent
38dc39c8dc
commit
c706319f08
2 changed files with 2 additions and 4 deletions
|
|
@ -231,7 +231,6 @@ public class ILU {
|
|||
}
|
||||
|
||||
// Add all possible paths from java.library.path
|
||||
String java_library_path = System.getProperty("java.library.path");
|
||||
StringTokenizer st = new StringTokenizer(System.getProperty("java.library.path"), File.pathSeparator);
|
||||
while (st.hasMoreTokens()) {
|
||||
String path = st.nextToken();
|
||||
|
|
|
|||
|
|
@ -165,7 +165,7 @@ public class ILUT {
|
|||
/**
|
||||
* Native method to create ILUT instance
|
||||
*
|
||||
* @param iluPaths Array of strings containing paths to search for ILUT library
|
||||
* @param ilutPaths Array of strings containing paths to search for ILUT library
|
||||
*/
|
||||
protected static native void nCreate(String[] ilutPaths) throws LWJGLException;
|
||||
|
||||
|
|
@ -196,8 +196,7 @@ public class ILUT {
|
|||
}
|
||||
|
||||
// Add all possible paths from java.library.path
|
||||
String java_library_path = System.getProperty("java.library.path");
|
||||
StringTokenizer st = new StringTokenizer(System.getProperty("java.library.path"), File.pathSeparator);
|
||||
StringTokenizer st = new StringTokenizer(System.getProperty("java.library.path"), File.pathSeparator);
|
||||
while (st.hasMoreTokens()) {
|
||||
String path = st.nextToken();
|
||||
possible_paths.add(path + File.separator + platform_lib_name);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue