Minor tidy up for methodForSelector:

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@19183 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2004-04-25 11:08:52 +00:00
parent a0c5edbefe
commit 488e376948
4 changed files with 7 additions and 10 deletions

View file

@ -3,6 +3,8 @@
* Source/NSProtocolChecker.m: Major rewrite ... appeared almost totally
non-functional.
* Testing/nsconnectiion_server.m: Use NSProtocolChecker as a test.
* Source/NSDistantObject.m: ([methodForSelector:]) moved to NSProxy.m
* Source/NSProxy.m: ([methodForSelector:]) implemented.
2004-04-23 David Ayers <d.ayers@inode.at>

View file

@ -624,11 +624,6 @@ enum
return self;
}
- (IMP) methodForSelector: (SEL)aSelector
{
return get_imp(GSObjCClass((id)self), aSelector);
}
/**
* <p>Returns the method signature describing the arguments and return
* types of the method in the object referred to by the receiver

View file

@ -160,11 +160,6 @@
return self;
}
- (IMP) methodForSelector: (SEL)aSelector
{
return get_imp(GSObjCClass((id)self), aSelector);
}
- (NSMethodSignature*) methodSignatureForSelector: (SEL)aSelector
{
const char *types;

View file

@ -121,6 +121,11 @@ extern BOOL __objc_responds_to(id, SEL);
/* Do nothing */
}
- (IMP) methodForSelector: (SEL)aSelector
{
return get_imp(GSObjCClass((id)self), aSelector);
}
/**
* Returns the method signature for the specified selector.
*/