(Object (CoderAdditions)): Removed methods retainCount, dealloc,

release, retain.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@46 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mccallum 1994-12-13 16:55:41 +00:00
parent 6dcb6bec7b
commit 08fc2d7876
3 changed files with 0 additions and 31 deletions

View file

@ -147,10 +147,6 @@
/* These methods here temporarily until ObjC runtime category bug fixed */
- classForConnectedCoder:aRmc;
+ (void) encodeObject: anObject withConnectedCoder: aRmc;
- (id) retain;
- (void) release;
- (void) dealloc;
- (unsigned) retainCount;
- (BOOL) isProxy;
@end

View file

@ -1264,29 +1264,6 @@ exc_return_null(arglist_t f)
}
/* @implementation Object (Retaining) */
- (id) retain
{
return self;
}
- (oneway void) release
{
/* Do nothing */
}
- (void) dealloc
{
/* Do nothing */
}
- (unsigned) retainCount
{
return 0;
}
/* @implementation Object (IsProxy) */
- (BOOL) isProxy

View file

@ -147,10 +147,6 @@
/* These methods here temporarily until ObjC runtime category bug fixed */
- classForConnectedCoder:aRmc;
+ (void) encodeObject: anObject withConnectedCoder: aRmc;
- (id) retain;
- (void) release;
- (void) dealloc;
- (unsigned) retainCount;
- (BOOL) isProxy;
@end