style: use explicit type

This commit is contained in:
Paul Pacheco 2019-04-06 08:18:04 -05:00
parent 7e50ceaa73
commit b705b67b39

View File

@ -94,7 +94,7 @@ public static MethodDefinition ProcessTargetRpcCall(TypeDefinition td, MethodDef
if (!NetworkBehaviourProcessor.WriteArguments(rpcWorker, md, hasNetworkConnection))
return null;
var rpcName = md.Name;
string rpcName = md.Name;
int index = rpcName.IndexOf(TargetRpcPrefix);
if (index > -1)
{