diff --git a/dubbo-common/src/main/java/org/apache/dubbo/common/utils/ReflectUtils.java b/dubbo-common/src/main/java/org/apache/dubbo/common/utils/ReflectUtils.java index aa0a04f75d..4fcea01ec9 100644 --- a/dubbo-common/src/main/java/org/apache/dubbo/common/utils/ReflectUtils.java +++ b/dubbo-common/src/main/java/org/apache/dubbo/common/utils/ReflectUtils.java @@ -899,10 +899,6 @@ public final class ReflectUtils { @Deprecated public static Method findMethodByMethodSignature(Class clazz, String methodName, String[] parameterTypes) throws NoSuchMethodException, ClassNotFoundException { - String signature = clazz.getName() + "." + methodName; - if (parameterTypes != null && parameterTypes.length > 0) { - signature += StringUtils.join(parameterTypes); - } Method method; if (parameterTypes == null) { List finded = new ArrayList<>();