in dubbo-error-code-inspector/src/main/java/org/apache/dubbo/errorcode/reporter/InspectionResult.java [86:92]
public int hashCode() {
int result = allErrorCodes.hashCode();
result = 31 * result + linkNotReachableErrorCodes.hashCode();
result = 31 * result + illegalInvocations.hashCode();
result = 31 * result + invalidLoggerMethodInvocationLocations.hashCode();
return result;
}