in dubbo-error-code-inspector/src/main/java/org/apache/dubbo/errorcode/model/LoggerMethodInvocation.java [47:55]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
LoggerMethodInvocation that = (LoggerMethodInvocation) o;
if (!loggerMethodInvocationCode.equals(that.loggerMethodInvocationCode)) return false;
return occurredLines.equals(that.occurredLines);
}