From 3876a8776ee1c972a1449aa320b5d4abef4021df Mon Sep 17 00:00:00 2001 From: Xavier Cho Date: Sun, 8 Apr 2018 12:49:19 +0900 Subject: [PATCH] #18051: Remove redundant verbatim prefixes (cherry picked from commit f0bf5532fac919fdb4bb6fa0ba088117aa223524) --- modules/mono/glue/cs_files/GD.cs | 4 ++-- modules/mono/glue/cs_files/StringExtensions.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/mono/glue/cs_files/GD.cs b/modules/mono/glue/cs_files/GD.cs index 5f9ca2c335d..8a300fbbd49 100644 --- a/modules/mono/glue/cs_files/GD.cs +++ b/modules/mono/glue/cs_files/GD.cs @@ -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]; diff --git a/modules/mono/glue/cs_files/StringExtensions.cs b/modules/mono/glue/cs_files/StringExtensions.cs index c86208f9bde..38f7a0941f1 100644 --- a/modules/mono/glue/cs_files/StringExtensions.cs +++ b/modules/mono/glue/cs_files/StringExtensions.cs @@ -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;