Fix recursion error

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@26310 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2008-03-16 07:06:15 +00:00
parent bf72375a70
commit 189eddfee0
2 changed files with 2 additions and 2 deletions

View file

@ -1525,7 +1525,7 @@ compare(id elem1, id elem2, void* context)
}
else
{
result = [self valueForKeyPath: path];
result = [super valueForKeyPath: path];
}
}
}

View file

@ -826,7 +826,7 @@ static Class NSMutableSet_concrete_class;
}
else
{
result = [self valueForKeyPath: path];
result = [super valueForKeyPath: path];
}
}
}