mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-26 18:21:04 +00:00
fixed missing semicolons
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@22499 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d63a230d59
commit
efd1539f9f
1 changed files with 3 additions and 3 deletions
|
@ -39,7 +39,7 @@
|
||||||
inputStream: (NSInputStream **)inputStream
|
inputStream: (NSInputStream **)inputStream
|
||||||
outputStream: (NSOutputStream **)outputStream
|
outputStream: (NSOutputStream **)outputStream
|
||||||
{
|
{
|
||||||
[self notImplemented:_cmd]
|
[self notImplemented:_cmd];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void) close
|
- (void) close
|
||||||
|
@ -103,13 +103,13 @@
|
||||||
|
|
||||||
+ (id) inputStreamWithData: (NSData *)data
|
+ (id) inputStreamWithData: (NSData *)data
|
||||||
{
|
{
|
||||||
[self notImplemented:_cmd]
|
[self notImplemented:_cmd];
|
||||||
return nil;
|
return nil;
|
||||||
}
|
}
|
||||||
|
|
||||||
+ (id) inputStreamWithFileAtPath: (NSString *)path
|
+ (id) inputStreamWithFileAtPath: (NSString *)path
|
||||||
{
|
{
|
||||||
[self notImplemented:_cmd]
|
[self notImplemented:_cmd];
|
||||||
return nil;
|
return nil;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue