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 f03afeb1d99600351f291490939d9ac661146d34
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Nov 19 09:35:18 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 747bd98..c517574 100644
--- a/src/main/java/org/apache/commons/logging/LogFactory.java
+++ b/src/main/java/org/apache/commons/logging/LogFactory.java
@@ -461,7 +461,7 @@ public abstract class LogFactory {
      * that LogFactory.release(contextClassLoader) is called whenever a
      * webapp is undeployed.
      */
-    private static final Hashtable createFactoryStore() {
+    private static Hashtable createFactoryStore() {
         Hashtable result = null;
         String storeImplementationClass;
         try {

Reply via email to