mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-25 09:41:15 +00:00
(encodeWithCoder:, initWithCoder:): Remove class names from arg type
to avoid bogus warnings about protocol conformance. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@423 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
24a5f39c64
commit
d8dcc3b026
1 changed files with 2 additions and 2 deletions
|
@ -137,7 +137,7 @@ _NSFoundationUncaughtExceptionHandler(NSException *exception)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
- (void)encodeWithCoder:(NSCoder *)aCoder
|
- (void)encodeWithCoder: aCoder
|
||||||
{
|
{
|
||||||
[super encodeWithCoder:aCoder];
|
[super encodeWithCoder:aCoder];
|
||||||
[aCoder encodeObject:e_name];
|
[aCoder encodeObject:e_name];
|
||||||
|
@ -145,7 +145,7 @@ _NSFoundationUncaughtExceptionHandler(NSException *exception)
|
||||||
[aCoder encodeObject:e_info];
|
[aCoder encodeObject:e_info];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (id)initWithCoder:(NSCoder *)aDecoder
|
- (id)initWithCoder: aDecoder
|
||||||
{
|
{
|
||||||
self = [super initWithCoder:aDecoder];
|
self = [super initWithCoder:aDecoder];
|
||||||
e_name = [[aDecoder decodeObject] retain];
|
e_name = [[aDecoder decodeObject] retain];
|
||||||
|
|
Loading…
Reference in a new issue