Skip to content

Commit

Permalink
KL-72/style: fix check style error
Browse files Browse the repository at this point in the history
  • Loading branch information
idealflower-k committed Jul 31, 2024
1 parent 632bccc commit 4782754
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ public boolean equals(Object object) {
return false;
}
CountryResponseDto that = (CountryResponseDto)object;
return currencyId == that.currencyId &&
Objects.equals(name, that.name) &&
Objects.equals(flag, that.flag) &&
Objects.equals(photo, that.photo) &&
Objects.equals(countryId, that.countryId) &&
Objects.equals(region, that.region);
return currencyId == that.currencyId
&& Objects.equals(name, that.name)
&& Objects.equals(flag, that.flag)
&& Objects.equals(photo, that.photo)
&& Objects.equals(countryId, that.countryId)
&& Objects.equals(region, that.region);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ public boolean equals(Object object) {
return false;
}
CountryWithOutRegionDto that = (CountryWithOutRegionDto)object;
return currencyId == that.currencyId &&
Objects.equals(name, that.name) &&
Objects.equals(flag, that.flag) &&
Objects.equals(photo, that.photo) &&
Objects.equals(countryId, that.countryId);
return currencyId == that.currencyId
&& Objects.equals(name, that.name)
&& Objects.equals(flag, that.flag)
&& Objects.equals(photo, that.photo)
&& Objects.equals(countryId, that.countryId);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ public boolean equals(Object object) {
return false;
}
RegionResponseDto that = (RegionResponseDto)object;
return Objects.equals(name, that.name) &&
Objects.equals(regionId, that.regionId);
return Objects.equals(name, that.name)
&& Objects.equals(regionId, that.regionId);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ public boolean equals(Object object) {
return false;
}
RegionSimpleResponseDto that = (RegionSimpleResponseDto)object;
return Objects.equals(name, that.name) &&
Objects.equals(regionId, that.regionId);
return Objects.equals(name, that.name)
&& Objects.equals(regionId, that.regionId);
}

@Override
Expand Down

0 comments on commit 4782754

Please sign in to comment.