minor cleanup

This commit is contained in:
Brian Matzon 2005-03-27 19:36:09 +00:00
parent 38dc39c8dc
commit c706319f08
2 changed files with 2 additions and 4 deletions

View File

@ -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();

View File

@ -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);