Remove check on parameter nasmes in interface and implementation. We only need types to match

This commit is contained in:
Richard Frith-Macdonald 2023-02-10 09:41:10 +00:00
parent 3631c4b068
commit 55e53caf28

View file

@ -3130,20 +3130,6 @@ fail:
* Merge info from implementation into existing version.
*/
a0 = [exist objectForKey: @"Args"];
a1 = [method objectForKey: @"Args"];
if (a0 != nil)
{
if ([a0 isEqual: a1] == NO)
{
ASSIGNCOPY(itemName, token);
[self log: @"method args in interface %@ don't match "
@"those in implementation %@", a0, a1];
DESTROY(itemName);
[exist setObject: a1 forKey: @"Args"];
}
}
a0 = [exist objectForKey: @"Types"];
a1 = [method objectForKey: @"Types"];
if (a0 != nil)