diff options
author | Michael Muré <batolettre@gmail.com> | 2018-09-21 18:18:51 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-09-21 18:53:37 +0200 |
commit | 82eaceffc1d750832a2a66f206749d2dca968cce (patch) | |
tree | 1431c8f1fd9baa689b850da7f104d12c20b1d8a7 /bug/interface.go | |
parent | 6a575fbf483e2b28821908f67e87637d9e5cea75 (diff) | |
download | git-bug-82eaceffc1d750832a2a66f206749d2dca968cce.tar.gz git-bug-82eaceffc1d750832a2a66f206749d2dca968cce.zip |
repo: split the Repo interface to avoid abstraction leak in RepoCache
Diffstat (limited to 'bug/interface.go')
-rw-r--r-- | bug/interface.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bug/interface.go b/bug/interface.go index 72dee61c..186c26fc 100644 --- a/bug/interface.go +++ b/bug/interface.go @@ -22,7 +22,7 @@ type Interface interface { HasPendingOp() bool // Commit write the staging area in Git and move the operations to the packs - Commit(repo repository.Repo) error + Commit(repo repository.ClockedRepo) error // Merge a different version of the same bug by rebasing operations of this bug // that are not present in the other on top of the chain of operations of the |