From dc1ac779d15c95b51d9affa6879f1491908fa8ca Mon Sep 17 00:00:00 2001 From: Andrew McCallum Date: Wed, 28 Jun 1995 23:50:13 +0000 Subject: [PATCH] ([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 --- Source/BinaryTree.m | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Source/BinaryTree.m b/Source/BinaryTree.m index 5e3b21fc1..d03bcf375 100644 --- a/Source/BinaryTree.m +++ b/Source/BinaryTree.m @@ -53,8 +53,13 @@ static id nilBinaryTreeNode; /* 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 { + [self notImplemented:_cmd]; [super _initCollectionWithCoder:aCoder]; _count = 0; _contents_root = [self nilNode];