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

commit b7a456d06ecc8c5e4cd1faa3ca41a352b3dcb7ec
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Nov 19 09:36:19 2023 -0500

    Remove redundant final (PMD)
---
 src/main/java/org/apache/commons/logging/LogFactory.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/logging/LogFactory.java 
b/src/main/java/org/apache/commons/logging/LogFactory.java
index c517574..f281d3b 100644
--- a/src/main/java/org/apache/commons/logging/LogFactory.java
+++ b/src/main/java/org/apache/commons/logging/LogFactory.java
@@ -633,7 +633,7 @@ public abstract class LogFactory {
      * webapps. Webapps can also use explicit priorities to override a 
configuration
      * file in the shared classpath if needed.
      */
-    private static final Properties getConfigurationFile(final ClassLoader 
classLoader, final String fileName) {
+    private static Properties getConfigurationFile(final ClassLoader 
classLoader, final String fileName) {
         Properties props = null;
         double priority = 0.0;
         URL propsUrl = null;

Reply via email to