Skip to content

Commit 6c9db47

Browse files
committed
DefaultJava3DService: refactor variable name
1 parent 3428035 commit 6c9db47

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/main/java/org/scijava/java3d/DefaultJava3DService.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -91,14 +91,14 @@ protected void onEvent(@SuppressWarnings("unused") final UIShownEvent evt) {
9191
// -- Helper methods --
9292

9393
private void checkLibExtDirectory(final ArrayList<File> files,
94-
final String dir)
94+
final String dirPath)
9595
{
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.*");
96+
checkFile(files, new File(dirPath, "j3dcore.jar"));
97+
checkFile(files, new File(dirPath, "vecmath.jar"));
98+
checkFile(files, new File(dirPath, "j3dutils.jar"));
99+
checkFilePattern(files, dirPath, "j3d-core.*");
100+
checkFilePattern(files, dirPath, "vecmath.*");
101+
checkFilePattern(files, dirPath, "jogl.*");
102102
// Maybe libJ3DUtils.jnilib libJ3DAudio.jnilib
103103
}
104104

0 commit comments

Comments
 (0)