Abyss-lord commented on code in PR #6503: URL: https://github.com/apache/gravitino/pull/6503#discussion_r1967312849
########## clients/cli/src/main/java/org/apache/gravitino/cli/commands/CatalogAudit.java: ########## @@ -59,8 +59,6 @@ public void handle() { exitWithError(exp.getMessage()); } - if (result != null) { - displayAuditInfo(result.auditInfo()); - } + displayAuditInfo(result.auditInfo()); Review Comment: I abstract them and move it to `AuditCommand#displayAuditInfo`. ########## clients/cli/src/main/java/org/apache/gravitino/cli/commands/SchemaAudit.java: ########## @@ -66,8 +66,6 @@ public void handle() { exitWithError(exp.getMessage()); } - if (result != null) { - displayAuditInfo(result.auditInfo()); - } + displayAuditInfo(result.auditInfo()); Review Comment: I abstract them and move it to `AuditCommand#displayAuditInfo`. -- 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: commits-unsubscr...@gravitino.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org