diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2016-11-07 20:29:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-07 20:29:58 +0100 |
commit | 0ff9ef2b44c53e557c78bde0fd9c29847e5f0e23 (patch) | |
tree | b9c7485fe99e6e89fa736ceb0223aeb2ecddb77c /storage/filesystem/reference.go | |
parent | f6ed7424cbf33c7013332d7e95b4262a4bc4a523 (diff) | |
download | go-git-0ff9ef2b44c53e557c78bde0fd9c29847e5f0e23.tar.gz |
global storage interface refactor (#112)
* core: ObjectStorage, ReferenceStorage renamed to ObjectStorer and
ReferenceStorer
* rebase
* general, changes request by @alcortes
* general, changes request by @alcortes
Diffstat (limited to 'storage/filesystem/reference.go')
-rw-r--r-- | storage/filesystem/reference.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/storage/filesystem/reference.go b/storage/filesystem/reference.go index b2aa6d9..0015859 100644 --- a/storage/filesystem/reference.go +++ b/storage/filesystem/reference.go @@ -9,15 +9,15 @@ type ReferenceStorage struct { dir *dotgit.DotGit } -func (r *ReferenceStorage) Set(ref *core.Reference) error { +func (r *ReferenceStorage) SetReference(ref *core.Reference) error { return r.dir.SetRef(ref) } -func (r *ReferenceStorage) Get(n core.ReferenceName) (*core.Reference, error) { +func (r *ReferenceStorage) Reference(n core.ReferenceName) (*core.Reference, error) { return r.dir.Ref(n) } -func (r *ReferenceStorage) Iter() (core.ReferenceIter, error) { +func (r *ReferenceStorage) IterReferences() (core.ReferenceIter, error) { refs, err := r.dir.Refs() if err != nil { return nil, err |