diff options
author | Michael Muré <batolettre@gmail.com> | 2019-02-24 18:49:12 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2019-03-01 22:52:53 +0100 |
commit | 46beb4b886761ff69abe2ce45c2498a4fafe50d9 (patch) | |
tree | 2722505d859d93a309e6fcee40af7812c74d1220 /cache | |
parent | 475b7b4c490bc3729772932f2d7bbcabb8f781a7 (diff) | |
download | git-bug-46beb4b886761ff69abe2ce45c2498a4fafe50d9.tar.gz |
identity: another round of cleanups
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) } |