diff options
author | Joshua Sjoding <joshua.sjoding@scjalliance.com> | 2016-02-01 21:07:28 -0800 |
---|---|---|
committer | Joshua Sjoding <joshua.sjoding@scjalliance.com> | 2016-02-01 21:07:28 -0800 |
commit | d5696c0b75a115001e67025181663b8952b02691 (patch) | |
tree | ad72a47e46eed0b2201ae80f2b94f049918ae7cd | |
parent | 7ba1014b73e4d466320a29f7e3f47fcefe58695d (diff) | |
download | go-git-d5696c0b75a115001e67025181663b8952b02691.tar.gz |
Renamed ObjectStorage Iter function to IterType
-rw-r--r-- | core/object.go | 4 | ||||
-rw-r--r-- | repository.go | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/core/object.go b/core/object.go index 205de95..2c41245 100644 --- a/core/object.go +++ b/core/object.go @@ -21,7 +21,7 @@ type ObjectStorage interface { New() Object Set(Object) Hash Get(Hash) (Object, bool) - Iter(ObjectType) ObjectIter + IterType(ObjectType) ObjectIter } // ObjectType internal object type's @@ -189,7 +189,7 @@ func (o *RAWObjectStorage) Get(h Hash) (Object, bool) { return obj, ok } -func (o *RAWObjectStorage) Iter(t ObjectType) ObjectIter { +func (o *RAWObjectStorage) IterType(t ObjectType) ObjectIter { var series []Object switch t { case CommitObject: diff --git a/repository.go b/repository.go index d0bc103..31e5fc7 100644 --- a/repository.go +++ b/repository.go @@ -100,7 +100,7 @@ func (r *Repository) Commit(h core.Hash) (*Commit, error) { // Commits decode the objects into commits func (r *Repository) Commits() *CommitIter { - return NewCommitIter(r, r.Storage.Iter(core.CommitObject)) + return NewCommitIter(r, r.Storage.IterType(core.CommitObject)) } // Tree return the tree with the given hash |