mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-01 13:23:40 +01:00
Fix IDE0007: Use 'var' instead of explicit type
This commit is contained in:
parent
a32c0f07ea
commit
ff751e50ac
6 changed files with 7 additions and 7 deletions
|
|
@ -150,7 +150,7 @@ internal class PluginErrorHandler : IServiceType
|
|||
|
||||
// Create expressions to convert array elements to parameter types
|
||||
var callArgs = new Expression[parameters.Length];
|
||||
for (int i = 0; i < parameters.Length; i++)
|
||||
for (var i = 0; i < parameters.Length; i++)
|
||||
{
|
||||
var paramType = parameters[i].ParameterType;
|
||||
var arrayAccess = Expression.ArrayIndex(argsParam, Expression.Constant(i));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue