justinmclean commented on code in PR #7689:
URL: https://github.com/apache/gravitino/pull/7689#discussion_r2206588340
##########
core/src/main/java/org/apache/gravitino/meta/AuditInfo.java:
##########
@@ -225,6 +226,12 @@ public Builder withLastModifiedTime(Instant
lastModifiedTime) {
* @return the constructed and validated {@link AuditInfo} instance.
*/
public AuditInfo build() {
+ AuditInfo auditInfo = new AuditInfo();
+ auditInfo.creator = this.creator;
+ auditInfo.createTime = this.createTime;
+ auditInfo.lastModifier = this.lastModifier;
+ auditInfo.lastModifiedTime = this.lastModifiedTime;
+
Review Comment:
Thanks for that.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]