Skip to content

Commit 7c5e2d6

Browse files
committed
Use an import instead of a FQCN
1 parent 2dc6228 commit 7c5e2d6

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/main/java/org/apache/commons/beanutils/MethodUtils.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
import java.lang.reflect.InvocationTargetException;
2323
import java.lang.reflect.Method;
2424
import java.lang.reflect.Modifier;
25+
import java.util.Arrays;
2526
import java.util.Collections;
2627
import java.util.Map;
2728
import java.util.WeakHashMap;
@@ -97,7 +98,7 @@ public boolean equals(final Object obj) {
9798
return exact == md.exact &&
9899
methodName.equals(md.methodName) &&
99100
cls.equals(md.cls) &&
100-
java.util.Arrays.equals(paramTypes, md.paramTypes);
101+
Arrays.equals(paramTypes, md.paramTypes);
101102
}
102103
/**
103104
* Returns the string length of method name. I.e. if the

0 commit comments

Comments
 (0)