Skip to content

Commit

Permalink
Fix style.
Browse files Browse the repository at this point in the history
  • Loading branch information
rdblue committed Dec 20, 2024
1 parent 69f6886 commit 7d44fe5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions api/src/main/java/org/apache/iceberg/types/Types.java
Original file line number Diff line number Diff line change
Expand Up @@ -715,8 +715,7 @@ public boolean equals(Object o) {
return false;
} else if (!Objects.equals(initialDefault, that.initialDefault)) {
return false;
}
if (!Objects.equals(writeDefault, that.writeDefault)) {
} else if (!Objects.equals(writeDefault, that.writeDefault)) {
return false;
}
return true;
Expand Down

0 comments on commit 7d44fe5

Please sign in to comment.