Little tidyup

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@16974 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2003-06-20 18:53:34 +00:00
parent e19d14f6c5
commit c4b2e1fbe1
2 changed files with 4 additions and 9 deletions

View file

@ -2,6 +2,8 @@
* Source/GSString.m: Allow more length when converting unicode
string to integer.
* Source/NSObject.m: ([methodSignatureForSelector:]) return nil if
the receiver does not implement it.
2003-06-20 Adam Fedor <fedor@gnu.org>

View file

@ -1250,16 +1250,9 @@ static BOOL double_release_check_enabled = NO;
: class_get_class_method(GSObjCClass(self), aSelector));
if (mth == 0)
{
types = 0;
}
else
{
types = mth->method_types;
}
if (types == 0)
{
types = sel_get_type(aSelector);
return nil;
}
types = mth->method_types;
if (types == 0)
{
return nil;