From 4c749159ef393e32f64f39be5f2d679ab268dce4 Mon Sep 17 00:00:00 2001 From: Andrew McCallum Date: Mon, 18 Mar 1996 13:46:06 +0000 Subject: [PATCH] ([GapArray -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@1155 72102866-910b-0410-8b05-ffd578937521 --- Source/GapArray.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/GapArray.m b/Source/GapArray.m index ab1e2f981..aaa3e54d4 100644 --- a/Source/GapArray.m +++ b/Source/GapArray.m @@ -62,9 +62,9 @@ return copy; } -- (void) _collectionEmpty +- (void) empty { - [super _collectionEmpty]; + [super empty]; _gap_start = 0; _gap_size = _capacity; }