This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-crypto.git
The following commit(s) were added to refs/heads/master by this push:
new 1cadee2 Camel-case internal names
1cadee2 is described below
commit 1cadee28761864f000ddc3fc167ce3fac13a6212
Author: Gary Gregory <[email protected]>
AuthorDate: Thu Oct 19 09:12:39 2023 -0400
Camel-case internal names
---
src/main/java/org/apache/commons/crypto/NativeCodeLoader.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/main/java/org/apache/commons/crypto/NativeCodeLoader.java
b/src/main/java/org/apache/commons/crypto/NativeCodeLoader.java
index fd03dcb..61a195b 100644
--- a/src/main/java/org/apache/commons/crypto/NativeCodeLoader.java
+++ b/src/main/java/org/apache/commons/crypto/NativeCodeLoader.java
@@ -239,9 +239,9 @@ final class NativeCodeLoader {
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) {