mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
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:
parent
a0c5edbefe
commit
488e376948
4 changed files with 7 additions and 10 deletions
|
@ -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
|
||||
|
|
|
@ -160,11 +160,6 @@
|
|||
return self;
|
||||
}
|
||||
|
||||
- (IMP) methodForSelector: (SEL)aSelector
|
||||
{
|
||||
return get_imp(GSObjCClass((id)self), aSelector);
|
||||
}
|
||||
|
||||
- (NSMethodSignature*) methodSignatureForSelector: (SEL)aSelector
|
||||
{
|
||||
const char *types;
|
||||
|
|
|
@ -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.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue