diff options
Diffstat (limited to 'cache')
-rw-r--r-- | cache/repo_cache.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/cache/repo_cache.go b/cache/repo_cache.go index a50c745b..7423ee73 100644 --- a/cache/repo_cache.go +++ b/cache/repo_cache.go @@ -579,8 +579,6 @@ func (c *RepoCache) NewBugRaw(author *IdentityCache, unixTime int64, title strin // Fetch retrieve update from a remote // This does not change the local bugs state func (c *RepoCache) Fetch(remote string) (string, error) { - // TODO: add identities - return bug.Fetch(c.repo, remote) } @@ -625,8 +623,6 @@ func (c *RepoCache) MergeAll(remote string) <-chan bug.MergeResult { // Push update a remote with the local changes func (c *RepoCache) Push(remote string) (string, error) { - // TODO: add identities - return bug.Push(c.repo, remote) } |