This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch 1.X
in repository https://gitbox.apache.org/repos/asf/commons-beanutils.git
The following commit(s) were added to refs/heads/1.X by this push:
new 58df9009 Fix typo in trace logging
58df9009 is described below
commit 58df90097801cae72e0501912de985a3d1735c0f
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Oct 18 18:07:05 2024 -0400
Fix typo in trace logging
---
src/main/java/org/apache/commons/beanutils/BeanUtilsBean.java | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/main/java/org/apache/commons/beanutils/BeanUtilsBean.java
b/src/main/java/org/apache/commons/beanutils/BeanUtilsBean.java
index 0a18ec2d..cc245084 100644
--- a/src/main/java/org/apache/commons/beanutils/BeanUtilsBean.java
+++ b/src/main/java/org/apache/commons/beanutils/BeanUtilsBean.java
@@ -438,8 +438,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;
}