mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
([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:
parent
e895d8bfaf
commit
ead174c188
1 changed files with 7 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue