in dubbo-error-code-inspector/src/main/java/org/apache/dubbo/errorcode/reporter/InspectionResult.java [73:83]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
InspectionResult that = (InspectionResult) o;
if (!allErrorCodes.equals(that.allErrorCodes)) return false;
if (!linkNotReachableErrorCodes.equals(that.linkNotReachableErrorCodes)) return false;
if (!illegalInvocations.equals(that.illegalInvocations)) return false;
return invalidLoggerMethodInvocationLocations.equals(that.invalidLoggerMethodInvocationLocations);
}