#18051: Remove unnecessary variable assignments

This commit is contained in:
Xavier Cho
2018-04-08 12:38:02 +09:00
parent fdfc478c88
commit 93dd59d763
5 changed files with 7 additions and 11 deletions

View File

@ -259,7 +259,7 @@ namespace Godot
{
int basepos = instance.Find("://");
var rs = string.Empty;
string rs;
var @base = string.Empty;
if (basepos != -1)
@ -378,7 +378,7 @@ namespace Godot
while (instance[src] != 0 && text[tgt] != 0)
{
var match = false;
bool match;
if (case_insensitive)
{