Reinstated -respondsToSelector: and -conformsToProtocol:

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@2876 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
richard 1998-07-29 09:47:26 +00:00
parent 090a8a2ec9
commit 19e723a0d7

View file

@ -90,7 +90,6 @@
return object_get_class(self); return object_get_class(self);
} }
#if 0
- (BOOL) conformsToProtocol: (Protocol*)aProtocol - (BOOL) conformsToProtocol: (Protocol*)aProtocol
{ {
NSInvocation* inv; NSInvocation* inv;
@ -105,7 +104,6 @@
[inv getReturnValue: &result]; [inv getReturnValue: &result];
return result; return result;
} }
#endif
- (void) dealloc - (void) dealloc
{ {
@ -221,7 +219,6 @@
} }
} }
#if 0
- (BOOL) respondsToSelector: (SEL)aSelector - (BOOL) respondsToSelector: (SEL)aSelector
{ {
NSInvocation* inv; NSInvocation* inv;
@ -236,7 +233,6 @@
[inv getReturnValue: &result]; [inv getReturnValue: &result];
return result; return result;
} }
#endif
- retain - retain
{ {