(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:
Andrew McCallum 1995-05-05 21:32:14 +00:00
parent 24a5f39c64
commit d8dcc3b026

View file

@ -137,7 +137,7 @@ _NSFoundationUncaughtExceptionHandler(NSException *exception)
}
- (void)encodeWithCoder:(NSCoder *)aCoder
- (void)encodeWithCoder: aCoder
{
[super encodeWithCoder:aCoder];
[aCoder encodeObject:e_name];
@ -145,7 +145,7 @@ _NSFoundationUncaughtExceptionHandler(NSException *exception)
[aCoder encodeObject:e_info];
}
- (id)initWithCoder:(NSCoder *)aDecoder
- (id)initWithCoder: aDecoder
{
self = [super initWithCoder:aDecoder];
e_name = [[aDecoder decodeObject] retain];