// is there just one?
if( methodCalls.size() != 1 )
{
return null;
}
MethodCall call = methodCalls.get( 0 );
try
{
// we have a bridge method!
return call.getMethod();
}
catch( NotFoundException ex )
{
// can't find the type? not a bridge method
return null;