rdblue commented on code in PR #5427: URL: https://github.com/apache/iceberg/pull/5427#discussion_r942814018
########## api/src/main/java/org/apache/iceberg/metrics/ScanReport.java: ########## @@ -83,12 +87,34 @@ public String toString() { .toString(); } + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } Review Comment: This is still missing newlines between control flow and following statements. It's fine to generate code, but it still needs to be formatted correctly. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org