diff options
Diffstat (limited to 'bug/comment.go')
-rw-r--r-- | bug/comment.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/bug/comment.go b/bug/comment.go index 2261f6de..09cd49bd 100644 --- a/bug/comment.go +++ b/bug/comment.go @@ -1,12 +1,10 @@ package bug -import "time" - type Comment struct { Author Person Message string // Creation time of the comment. // Should be used only for human display, never for ordering as we can't rely on it in a distributed system. - Time time.Time + Time int64 } |