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

#18051: Remove redundant verbatim prefixes

(cherry picked from commit f0bf5532fa)
This commit is contained in:
Xavier Cho
2018-04-08 12:49:19 +09:00
committed by Hein-Pieter van Braam
parent 37ce381e3d
commit 3876a8776e
2 changed files with 3 additions and 3 deletions

View File

@@ -850,7 +850,7 @@ namespace Godot
int end = instance.Find(divisor, from);
if (end < 0)
end = len;
if (allow_empty || end > @from)
if (allow_empty || end > from)
ret.Add(float.Parse(instance.Substring(from)));
if (end == len)
break;