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


The following commit(s) were added to refs/heads/master by this push:
     new 9566e90b Fix typo in trace logging
9566e90b is described below

commit 9566e90be400214cc0aef0bb1f7661807d0864ae
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Fri Oct 18 18:06:02 2024 -0400

    Fix typo in trace logging
---
 src/main/java/org/apache/commons/beanutils2/BeanUtilsBean.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/beanutils2/BeanUtilsBean.java 
b/src/main/java/org/apache/commons/beanutils2/BeanUtilsBean.java
index 8bd0acc8..63a02842 100644
--- a/src/main/java/org/apache/commons/beanutils2/BeanUtilsBean.java
+++ b/src/main/java/org/apache/commons/beanutils2/BeanUtilsBean.java
@@ -406,7 +406,7 @@ public class BeanUtilsBean {
             if (type == null) {
                 // Most likely an indexed setter on a POJB only
                 if (LOG.isTraceEnabled()) {
-                    LOG.trace("    target type for property '" + propName + "' 
is null, so skipping ths setter");
+                    LOG.trace("    target type for property '" + propName + "' 
is null, so skipping the setter");
                 }
                 return;
             }

Reply via email to