in src/main/java/com/amazonaws/schemamanager/repo/datatypes/RepoSchemaMetadata.java [76:100]
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
RepoSchemaMetadata other = (RepoSchemaMetadata) obj;
if (defaultCompatibility == null) {
if (other.defaultCompatibility != null)
return false;
} else if (!defaultCompatibility.equals(other.defaultCompatibility))
return false;
if (schemaName == null) {
if (other.schemaName != null)
return false;
} else if (!schemaName.equals(other.schemaName))
return false;
if (subjects == null) {
if (other.subjects != null)
return false;
} else if (!subjects.equals(other.subjects))
return false;
return true;
}