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 ff4c0adb Format nit
ff4c0adb is described below
commit ff4c0adb68115deef2074f88cd76edf4ba304def
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Dec 21 15:21:11 2025 -0500
Format nit
---
src/main/java/org/apache/commons/beanutils/MethodUtils.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/commons/beanutils/MethodUtils.java
b/src/main/java/org/apache/commons/beanutils/MethodUtils.java
index ed82e772..d9de0d51 100644
--- a/src/main/java/org/apache/commons/beanutils/MethodUtils.java
+++ b/src/main/java/org/apache/commons/beanutils/MethodUtils.java
@@ -549,7 +549,7 @@ public class MethodUtils {
break;
}
}
- if (destClass.isInterface() &&
isAssignmentCompatible(destClass,srcClass)) {
+ if (destClass.isInterface() && isAssignmentCompatible(destClass,
srcClass)) {
// slight penalty for interface match.
// we still want an exact match to override an interface
match, but
// an interface match should override anything where we have
to get a