From de0f2e6372d1c419733617334c6f6261a972182d Mon Sep 17 00:00:00 2001 From: Andrew McCallum Date: Mon, 18 Mar 1996 13:42:07 +0000 Subject: [PATCH] ([CircularArray -empty]): Renamed from _collectionEmpty, and implemented to do entire job of emptying. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1150 72102866-910b-0410-8b05-ffd578937521 --- Source/CircularArray.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/CircularArray.m b/Source/CircularArray.m index c1ed26408..8b2914b43 100644 --- a/Source/CircularArray.m +++ b/Source/CircularArray.m @@ -53,9 +53,9 @@ return copy; } -- (void) _collectionEmpty +- (void) empty { - [super _collectionEmpty]; + [super empty]; _start_index = 0; }