From a8601947a18a3bc140661531312ee0fd662907d7 Mon Sep 17 00:00:00 2001 From: Richard Frith-MacDonald Date: Mon, 23 Nov 1998 21:42:24 +0000 Subject: [PATCH] Don't call [super encodeWithCoder] and [super initWithCoder] git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@3310 72102866-910b-0410-8b05-ffd578937521 --- Source/TcpPort.m | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/TcpPort.m b/Source/TcpPort.m index 8a0b21a2b..565680f35 100644 --- a/Source/TcpPort.m +++ b/Source/TcpPort.m @@ -1355,7 +1355,6 @@ static NSMapTable* port_number_2_port; /* We are actually encoding a "send right" (ala Mach), not a receive right. These values must match those expected by [TcpOutPort +newWithCoder] */ - [super encodeWithCoder: aCoder]; /* Encode these at bytes, not as C-variables, because they are already in "network byte-order". */ [aCoder encodeBytes: &_listening_address.sin_port @@ -1858,7 +1857,6 @@ static NSMapTable *out_port_bag = NULL; - (void) encodeWithCoder: aCoder { NSAssert(is_valid, NSInternalInconsistencyException); - [super encodeWithCoder: aCoder]; NSAssert(!_polling_in_port || (ntohs (_remote_in_port_address.sin_port) != [_polling_in_port portNumber]), NSInternalInconsistencyException);