Skip to content

Commit

Permalink
Update parameter name
Browse files Browse the repository at this point in the history
  • Loading branch information
buyaa-n authored Sep 20, 2023
1 parent f29ad54 commit 3496725
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2063,12 +2063,12 @@ void M()
private void RemoveItem(Dictionary<string, string> dictionaryParam)
{
if (setParam.ContainsKey("Item"))
if (dictionaryParam.ContainsKey("Item"))
DictionaryField1.Remove("Item");
if (!DictionaryField1.ContainsKey("Item"))
{
setParam.Remove("Item");
dictionaryParam.Remove("Item");
}
}
}
Expand Down

0 comments on commit 3496725

Please sign in to comment.