Use -subclassResponsibility instead of -notImplemented

where appropriate.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@893 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1996-02-01 17:04:17 +00:00
parent 2cea9a86d1
commit 843d0a2938
7 changed files with 46 additions and 46 deletions

View file

@ -1,5 +1,5 @@
/* NSEnumerator abstrace class for GNUStep
Copyright (C) 1995 Free Software Foundation, Inc.
Copyright (C) 1995, 1996 Free Software Foundation, Inc.
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
Date: March 1995
@ -28,7 +28,7 @@
- (id) nextObject
{
[self notImplemented:_cmd];
[self subclassResponsibility:_cmd];
return nil;
}