([Stream -flushStream]): Do nothing, instead of calling

-subclassResponsibility.
([Stream -closeStream]): Likewise.
([Stream -isClosed]): New method, return NO.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@811 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1996-01-25 15:14:32 +00:00
parent e895d8bfaf
commit ead174c188

View file

@ -99,12 +99,17 @@
- (void) flushStream
{
[self subclassResponsibility:_cmd];
/* Do nothing. */
}
- (void) closeStream
{
[self subclassResponsibility:_cmd];
/* Do nothing. */
}
- (BOOL) isClosed
{
return NO;
}
- (void) setStreamPosition: (unsigned)i