From d2fdc59b4bdf28afa821a5549d740bf7e5868192 Mon Sep 17 00:00:00 2001 From: mccallum Date: Mon, 30 Oct 1995 01:51:17 +0000 Subject: [PATCH] ([NSGCountedSet -isEqual:]): Added method. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@653 72102866-910b-0410-8b05-ffd578937521 --- Source/NSGCountedSet.m | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Source/NSGCountedSet.m b/Source/NSGCountedSet.m index ed644e423..30407bc0c 100644 --- a/Source/NSGCountedSet.m +++ b/Source/NSGCountedSet.m @@ -71,9 +71,6 @@ { static int done = 0; - /* xxx This class not yet ready for action. */ - [self notImplemented:_cmd]; - if (!done) { done = 1; @@ -108,4 +105,10 @@ return [self occurrencesOfElement:anObject]; } +/* To deal with behavior over-enthusiasm. Will be fixed later. */ +- (BOOL) isEqual: other +{ + return [super isEqual:other]; +} + @end