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-compress.git


The following commit(s) were added to refs/heads/master by this push:
     new c50823fc Camel-case variable name
c50823fc is described below

commit c50823fcd0e8773b0c6afeaf8939d715e0510fbf
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Tue Oct 31 06:30:59 2023 -0400

    Camel-case variable name
---
 src/main/java/org/apache/commons/compress/utils/OsgiUtils.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/compress/utils/OsgiUtils.java 
b/src/main/java/org/apache/commons/compress/utils/OsgiUtils.java
index ca78316a..fed7a953 100644
--- a/src/main/java/org/apache/commons/compress/utils/OsgiUtils.java
+++ b/src/main/java/org/apache/commons/compress/utils/OsgiUtils.java
@@ -27,8 +27,8 @@ public class OsgiUtils {
     private static final boolean inOsgiEnvironment;
 
     static {
-        final Class<?> classloaderClass = 
OsgiUtils.class.getClassLoader().getClass();
-        inOsgiEnvironment = isBundleReference(classloaderClass);
+        final Class<?> classLoaderClass = 
OsgiUtils.class.getClassLoader().getClass();
+        inOsgiEnvironment = isBundleReference(classLoaderClass);
     }
 
     private static boolean isBundleReference(final Class<?> clazz) {

Reply via email to