From 9f897f3e0351a7db7016d22b864b8b88dfd5ce06 Mon Sep 17 00:00:00 2001 From: Yuuta Liang Date: Wed, 29 Nov 2023 14:47:14 -0800 Subject: Fix association taggings Signed-off-by: Yuuta Liang --- src/main/model/ca/AuditLogEntry.java | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/main/model/ca/AuditLogEntry.java') diff --git a/src/main/model/ca/AuditLogEntry.java b/src/main/model/ca/AuditLogEntry.java index a8d1929..673055a 100644 --- a/src/main/model/ca/AuditLogEntry.java +++ b/src/main/model/ca/AuditLogEntry.java @@ -20,6 +20,9 @@ public class AuditLogEntry { this.action = action; } + /** + * EFFECTS: Format log in the time\tuser\taction format. + */ @Override public String toString() { return String.format("%s\t%s\t%s", time, user, action); -- cgit v1.2.3