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 1f3ec507c4c40a2daab3298bf83f2ef1f90d0571 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Nov 19 09:39:24 2023 -0500 No need to use a FQCN for String here --- src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java b/src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java index 2dc4015..2d7d01f 100644 --- a/src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java +++ b/src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java @@ -278,7 +278,7 @@ public class LogFactoryImpl extends LogFactory { /** * The signature of the Constructor to be used. */ - protected Class[] logConstructorSignature = { java.lang.String.class }; + protected Class[] logConstructorSignature = { String.class }; // --------------------------------------------------------- Public Methods