in dubbo-error-code-inspector/src/main/java/org/apache/dubbo/errorcode/model/MethodDefinition.java [83:88]
public int hashCode() {
int result = className.hashCode();
result = 31 * result + methodName.hashCode();
result = 31 * result + arguments.hashCode();
return result;
}