Use final.

This commit is contained in:
Gary Gregory 2020-12-22 16:07:02 -05:00
parent 44b0bb5273
commit 31ede5565b
1 changed files with 1 additions and 1 deletions

View File

@ -755,7 +755,7 @@ public class MethodUtils {
.filter(method -> method.getName().equals(methodName))
.forEach(methods::add);
for (Method method : methods) {
for (final Method method : methods) {
if (Arrays.deepEquals(method.getParameterTypes(), parameterTypes)) {
return method;
}