Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
better code format
  • Loading branch information
wing328 committed Oct 10, 2019
commit c0ffad7e2f2493e351b357384e4ee9fdb988be3a
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public boolean equals(Object o) {
if (o == null || getClass() != o.getClass()) return false;
MappedModel that = (MappedModel) o;
return Objects.equals(mappingName, that.mappingName) &&
Objects.equals(modelName, that.modelName);
Objects.equals(modelName, that.modelName);
}

@Override
Expand All @@ -91,8 +91,8 @@ public boolean equals(Object o) {
if (o == null || getClass() != o.getClass()) return false;
CodegenDiscriminator that = (CodegenDiscriminator) o;
return Objects.equals(propertyName, that.propertyName) &&
Objects.equals(mapping, that.mapping) &&
Objects.equals(mappedModels, that.mappedModels);
Objects.equals(mapping, that.mapping) &&
Objects.equals(mappedModels, that.mappedModels);
}

@Override
Expand Down