([NSGCountedSet -isEqual:]): Added method.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@653 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1995-10-30 01:51:17 +00:00
parent a9f6524f55
commit 0f870ad94f

View file

@ -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