#18051: Remove redundant verbatim prefixes
This commit is contained in:
parent
85787776a5
commit
f0bf5532fa
2 changed files with 3 additions and 3 deletions
|
|
@ -127,9 +127,9 @@ namespace Godot
|
|||
int count;
|
||||
|
||||
if (increment > 0)
|
||||
count = (to - @from - 1) / increment + 1;
|
||||
count = (to - from - 1) / increment + 1;
|
||||
else
|
||||
count = (@from - to - 1) / -increment + 1;
|
||||
count = (from - to - 1) / -increment + 1;
|
||||
|
||||
var ret = new int[count];
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue