(message string)
| 34 | } |
| 35 | |
| 36 | func (c *BugCache) AddComment(message string) (entity.CombinedId, *bug.AddCommentOperation, error) { |
| 37 | return c.AddCommentWithFiles(message, nil) |
| 38 | } |
| 39 | |
| 40 | func (c *BugCache) AddCommentWithFiles(message string, files []repository.Hash) (entity.CombinedId, *bug.AddCommentOperation, error) { |
| 41 | author, err := c.getUserIdentity() |
no test coverage detected