style: use explicit type

This commit is contained in:
Paul Pacheco 2019-04-06 08:13:55 -05:00
parent 017b5203c0
commit 02bf5a5cf6

View File

@ -65,7 +65,7 @@ public static MethodDefinition ProcessRpcCall(TypeDefinition td, MethodDefinitio
if (!NetworkBehaviourProcessor.WriteArguments(rpcWorker, md, false))
return null;
var rpcName = md.Name;
string rpcName = md.Name;
int index = rpcName.IndexOf(RpcPrefix);
if (index > -1)
{