in src/main/java/com/amazon/photosharing/dao/Dictionary.java [78:87]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
DictionaryPK that = (DictionaryPK) o;
if (id != null ? !id.equals(that.id) : that.id != null) return false;
return locale != null ? locale.equals(that.locale) : that.locale == null;
}