We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2dc6228 commit 7c5e2d6Copy full SHA for 7c5e2d6
1 file changed
src/main/java/org/apache/commons/beanutils/MethodUtils.java
@@ -22,6 +22,7 @@
22
import java.lang.reflect.InvocationTargetException;
23
import java.lang.reflect.Method;
24
import java.lang.reflect.Modifier;
25
+import java.util.Arrays;
26
import java.util.Collections;
27
import java.util.Map;
28
import java.util.WeakHashMap;
@@ -97,7 +98,7 @@ public boolean equals(final Object obj) {
97
98
return exact == md.exact &&
99
methodName.equals(md.methodName) &&
100
cls.equals(md.cls) &&
- java.util.Arrays.equals(paramTypes, md.paramTypes);
101
+ Arrays.equals(paramTypes, md.paramTypes);
102
}
103
/**
104
* Returns the string length of method name. I.e. if the
0 commit comments