mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
(_collectionDealloc): Fix super call.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@177 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1c6674f548
commit
7505741aa5
2 changed files with 2 additions and 2 deletions
|
@ -145,7 +145,7 @@
|
|||
- (void) _collectionDealloc
|
||||
{
|
||||
coll_hash_delete(_contents_hash);
|
||||
[super dealloc];
|
||||
[super _collectionDealloc];
|
||||
}
|
||||
|
||||
/* This must work without sending any messages to content objects */
|
||||
|
|
|
@ -147,7 +147,7 @@
|
|||
- (void) _collectionDealloc
|
||||
{
|
||||
coll_hash_delete(_contents_hash);
|
||||
[super dealloc];
|
||||
[super _collectionDealloc];
|
||||
}
|
||||
|
||||
// SET OPERATIONS;
|
||||
|
|
Loading…
Reference in a new issue