in src/main/java/transcribe/TranscriptionItemDTO.java [21:34]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TranscriptionItemDTO transcriptionItemDTO = (TranscriptionItemDTO) o;
if (transcriptionItemDTO.getType() == null) {
return false;
}
return Objects.equals(getType(), transcriptionItemDTO.getType());
}