in sdk/appcenter-crashes/src/main/java/com/microsoft/appcenter/crashes/ingestion/models/Exception.java [227:245]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Exception exception = (Exception) o;
if (type != null ? !type.equals(exception.type) : exception.type != null) return false;
if (message != null ? !message.equals(exception.message) : exception.message != null)
return false;
if (stackTrace != null ? !stackTrace.equals(exception.stackTrace) : exception.stackTrace != null)
return false;
if (frames != null ? !frames.equals(exception.frames) : exception.frames != null)
return false;
if (innerExceptions != null ? !innerExceptions.equals(exception.innerExceptions) : exception.innerExceptions != null)
return false;
if (wrapperSdkName != null ? !wrapperSdkName.equals(exception.wrapperSdkName) : exception.wrapperSdkName != null)
return false;
return minidumpFilePath != null ? minidumpFilePath.equals(exception.minidumpFilePath) : exception.minidumpFilePath == null;
}