We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3428035 commit 6c9db47Copy full SHA for 6c9db47
src/main/java/org/scijava/java3d/DefaultJava3DService.java
@@ -91,14 +91,14 @@ protected void onEvent(@SuppressWarnings("unused") final UIShownEvent evt) {
91
// -- Helper methods --
92
93
private void checkLibExtDirectory(final ArrayList<File> files,
94
- final String dir)
+ final String dirPath)
95
{
96
- checkFile(files, new File(dir, "j3dcore.jar"));
97
- checkFile(files, new File(dir, "vecmath.jar"));
98
- checkFile(files, new File(dir, "j3dutils.jar"));
99
- checkFilePattern(files, dir, "j3d-core.*");
100
- checkFilePattern(files, dir, "vecmath.*");
101
- checkFilePattern(files, dir, "jogl.*");
+ checkFile(files, new File(dirPath, "j3dcore.jar"));
+ checkFile(files, new File(dirPath, "vecmath.jar"));
+ checkFile(files, new File(dirPath, "j3dutils.jar"));
+ checkFilePattern(files, dirPath, "j3d-core.*");
+ checkFilePattern(files, dirPath, "vecmath.*");
+ checkFilePattern(files, dirPath, "jogl.*");
102
// Maybe libJ3DUtils.jnilib libJ3DAudio.jnilib
103
}
104
0 commit comments