Partially revert poorly thoght out code

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32127 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2011-02-13 06:43:22 +00:00
parent 60c38bae4e
commit 4a099cd60a
4 changed files with 1 additions and 34 deletions

View file

@ -100,19 +100,6 @@
return nil;
}
- (id) notImplemented: (SEL)aSel reason: (NSString*)reason
{
char c = (class_isMetaClass(object_getClass(self)) ? '+' : '-');
[NSException
raise: NSGenericException
format: @"[%@%c%@] not implemented ... %@",
NSStringFromClass([self class]), c,
aSel ? (id)NSStringFromSelector(aSel) : (id)@"(null)",
reason];
return nil;
}
- (id) shouldNotImplement: (SEL)aSel
{
char c = (class_isMetaClass(object_getClass(self)) ? '+' : '-');