public boolean equals()

in src/main/java/transcribe/TranscriptionResultDTO.java [16:29]


    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }

        TranscriptionResultDTO transcriptionResultDTO = (TranscriptionResultDTO) o;
        if (transcriptionResultDTO.getTranscripts() == null) {
            return false;
        }
        return Objects.equals(getTranscripts(), transcriptionResultDTO.getTranscripts());
    }