From 45e32b29a434c294ffc24c5601ae7ebfffccbf95 Mon Sep 17 00:00:00 2001 From: FredKiefer Date: Wed, 25 Sep 2002 22:56:31 +0000 Subject: [PATCH] Removed the coder methods as they were just super calls. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@14561 72102866-910b-0410-8b05-ffd578937521 --- Source/NSButton.m | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/Source/NSButton.m b/Source/NSButton.m index 13fffcb5d..890813423 100644 --- a/Source/NSButton.m +++ b/Source/NSButton.m @@ -417,18 +417,4 @@ id _nsbuttonCellClass = nil; return [_cell sound]; } -// -// NSCoding protocol -// -- (void) encodeWithCoder: (NSCoder *)aCoder -{ - [super encodeWithCoder: aCoder]; -} - -- (id) initWithCoder: (NSCoder *)aDecoder -{ - [super initWithCoder: aDecoder]; - - return self; -} @end