mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-14 18:10:57 +00:00
([BinaryTree -_initCollectionWithCoder:]): Disabled with
-notImplemented. I need to fix decoding of this class. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@457 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1eee143286
commit
dc1ac779d1
1 changed files with 5 additions and 0 deletions
|
@ -53,8 +53,13 @@ static id nilBinaryTreeNode;
|
||||||
|
|
||||||
/* Archiving must mimic the above designated initializer */
|
/* Archiving must mimic the above designated initializer */
|
||||||
|
|
||||||
|
/* xxx See Collection _decodeContentsWithCoder:.
|
||||||
|
We shouldn't do an -addElement. finishEncodingInterconnectedObjects
|
||||||
|
should take care of all that. */
|
||||||
|
|
||||||
- _initCollectionWithCoder: aCoder
|
- _initCollectionWithCoder: aCoder
|
||||||
{
|
{
|
||||||
|
[self notImplemented:_cmd];
|
||||||
[super _initCollectionWithCoder:aCoder];
|
[super _initCollectionWithCoder:aCoder];
|
||||||
_count = 0;
|
_count = 0;
|
||||||
_contents_root = [self nilNode];
|
_contents_root = [self nilNode];
|
||||||
|
|
Loading…
Reference in a new issue