Code simplification

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@8275 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2000-12-07 23:07:37 +00:00
parent edc67ffd44
commit 24451e5cbc
6 changed files with 20 additions and 59 deletions

View file

@ -34,11 +34,6 @@
@class GSSet;
@class GSMutableSet;
@interface NSSetNonCore : NSSet
@end
@interface NSMutableSetNonCore: NSMutableSet
@end
@implementation NSSet
static Class NSSet_abstract_class;
@ -66,7 +61,6 @@ static Class NSMutableSet_concrete_class;
NSMutableSet_abstract_class = [NSMutableSet class];
NSSet_concrete_class = [GSSet class];
NSMutableSet_concrete_class = [GSMutableSet class];
behavior_class_add_class(self, [NSSetNonCore class]);
}
}
@ -195,10 +189,6 @@ static Class NSMutableSet_concrete_class;
return [self subclassResponsibility: _cmd];
}
@end
@implementation NSSetNonCore
/* Same as NSArray */
- (id) initWithObjects: firstObject rest: (va_list)ap
{
@ -462,8 +452,6 @@ static Class NSMutableSet_concrete_class;
{
if (self == [NSMutableSet class])
{
behavior_class_add_class(self, [NSMutableSetNonCore class]);
behavior_class_add_class(self, [NSSetNonCore class]);
}
}
@ -511,10 +499,6 @@ static Class NSMutableSet_concrete_class;
[self subclassResponsibility: _cmd];
}
@end
@implementation NSMutableSetNonCore
- (id) initWithObjects: (id*)objects
count: (unsigned)count
{