NetworkBehaviourProcessor: removed unused HasMethod function

This commit is contained in:
vis2k 2019-01-02 19:56:45 +01:00
parent 7d905626ae
commit be86ac5096

View File

@ -899,17 +899,5 @@ void ProcessMethods()
m_td.Methods.Add(md);
}
}
bool HasMethod(string name)
{
foreach (var method in m_td.Methods)
{
if (method.Name == name)
{
return true;
}
}
return false;
}
}
}