Skip to content

Commit

Permalink
Camel-case internal names
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Oct 19, 2023
1 parent 386af8a commit 1cadee2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/org/apache/commons/crypto/NativeCodeLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -239,9 +239,9 @@ static Throwable loadLibrary() {
System.load(absolutePath);
} else {
// Load preinstalled library (in the path -Djava.library.path)
final String libname = NATIVE_LIBNAME;
debug("%s System.loadLibrary('%s')", SIMPLE_NAME, libname);
System.loadLibrary(libname);
final String libName = NATIVE_LIBNAME;
debug("%s System.loadLibrary('%s')", SIMPLE_NAME, libName);
System.loadLibrary(libName);
}
return null; // OK
} catch (final Exception | UnsatisfiedLinkError t) {
Expand Down

0 comments on commit 1cadee2

Please sign in to comment.