소스 검색

#18051: Remove redundant verbatim prefixes

Xavier Cho 7 년 전
부모
커밋
f0bf5532fa
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 2
      modules/mono/glue/cs_files/GD.cs
  2. 1 1
      modules/mono/glue/cs_files/StringExtensions.cs

+ 2 - 2
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];
 

+ 1 - 1
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;