From d5696c0b75a115001e67025181663b8952b02691 Mon Sep 17 00:00:00 2001 From: Joshua Sjoding Date: Mon, 1 Feb 2016 21:07:28 -0800 Subject: Renamed ObjectStorage Iter function to IterType --- core/object.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/object.go') 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: -- cgit