Skip to content

Commit 7c5f915

Browse files
committed
more renaming
1 parent b17da1e commit 7c5f915

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

RetailCoder.VBE/Inspections/QuickFixes/PassParameterByReferenceQuickFix.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ private ArgContext GetArgContextForIdentifier(ParserRuleContext context, string
4343
{
4444
var argListContext = (ArgListContext)procStmtCtxChildren[idx];
4545
var arg = argListContext.children;
46-
for (int idx2 = 0; idx2 < arg.Count; idx2++)
46+
for (int idxArgListCtx = 0; idxArgListCtx < arg.Count; idxArgListCtx++)
4747
{
48-
if (arg[idx2] is ArgContext)
48+
if (arg[idxArgListCtx] is ArgContext)
4949
{
50-
var name = GetIdentifierNameFor((ArgContext)arg[idx2]);
50+
var name = GetIdentifierNameFor((ArgContext)arg[idxArgListCtx]);
5151
if (name.Equals(identifier))
5252
{
53-
return (ArgContext)arg[idx2];
53+
return (ArgContext)arg[idxArgListCtx];
5454
}
5555
}
5656
}

0 commit comments

Comments
 (0)