(_collectionDealloc): Fix super call.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@166 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mccallum 1995-03-23 03:27:01 +00:00
parent 489e4c5637
commit 4151cf0b65

View file

@ -142,7 +142,7 @@
- (void) _collectionDealloc
{
OBJC_FREE(_contents_array);
[super dealloc];
[super _collectionDealloc];
}
- initWithContentsOf: (id <Collecting>)aCollection