summaryrefslogtreecommitdiffstats
path: root/modules/mono/glue/cs_files/DebuggingUtils.cs
diff options
context:
space:
mode:
authorXavier Cho <mysticfallband@gmail.com>2018-04-17 07:33:42 +0900
committerXavier Cho <mysticfallband@gmail.com>2018-04-17 07:39:37 +0900
commite59fad39245de82cb243da38ba149ccd0ed957e5 (patch)
treec226f049a3fa65dac3cbadc6989c0b6d13f0ddd7 /modules/mono/glue/cs_files/DebuggingUtils.cs
parent94edd92248b4742e7d7a8e283da44d505957c50e (diff)
downloadredot-engine-e59fad39245de82cb243da38ba149ccd0ed957e5.tar.gz
#18051: Do not use `var` in a for-loop, or where type is not obvious
Diffstat (limited to 'modules/mono/glue/cs_files/DebuggingUtils.cs')
-rw-r--r--modules/mono/glue/cs_files/DebuggingUtils.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mono/glue/cs_files/DebuggingUtils.cs b/modules/mono/glue/cs_files/DebuggingUtils.cs
index a654c9b268..b27816084e 100644
--- a/modules/mono/glue/cs_files/DebuggingUtils.cs
+++ b/modules/mono/glue/cs_files/DebuggingUtils.cs
@@ -47,7 +47,7 @@ namespace Godot
sb.Append("<");
- for (var j = 0; j < genericParams.Length; j++)
+ for (int j = 0; j < genericParams.Length; j++)
{
if (j > 0)
sb.Append(", ");
@@ -64,7 +64,7 @@ namespace Godot
ParameterInfo[] parameter = methodBase.GetParameters();
- for (var i = 0; i < parameter.Length; i++)
+ for (int i = 0; i < parameter.Length; i++)
{
if (i > 0)
sb.Append(", ");