From 435be2b693aee89ed34a2d1e7291b3b141b19717 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Mon, 6 Aug 2018 20:31:20 +0200 Subject: bug: add a Lamport logical clock to be able to sort bugs by creation time and edit time without having to rely on a timestamp --- bug/operations/add_comment.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bug/operations/add_comment.go') diff --git a/bug/operations/add_comment.go b/bug/operations/add_comment.go index f2e76b73..7ae6f2dd 100644 --- a/bug/operations/add_comment.go +++ b/bug/operations/add_comment.go @@ -12,7 +12,8 @@ var _ bug.Operation = AddCommentOperation{} type AddCommentOperation struct { bug.OpBase Message string - files []util.Hash + // TODO: change for a map[string]util.hash to store the filename ? + files []util.Hash } func (op AddCommentOperation) Apply(snapshot bug.Snapshot) bug.Snapshot { -- cgit