1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-13 13:31:48 +00:00

#18051: Remove unnecessary variable assignments

(cherry picked from commit 93dd59d763)
This commit is contained in:
Xavier Cho
2018-04-08 12:38:02 +09:00
committed by Hein-Pieter van Braam
parent 31171ea5a2
commit 58f2953ddf
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)
{