Respond to review of gettypetypeofmatrix test.
authorRichard L Ford <richford@microsoft.com>
Tue, 10 Nov 2015 18:08:07 +0000 (10:08 -0800)
committerRichard L Ford <richford@microsoft.com>
Tue, 10 Nov 2015 18:08:07 +0000 (10:08 -0800)
The automatic formatter missed putting "public" and
"static" in a canonical order, so do that manually.

Also remove a case of Hungarian notation.

tests/src/JIT/Directed/gettypetypeof/gettypetypeofmatrix.cs

index aa014d5..dc0029b 100644 (file)
@@ -15,9 +15,9 @@ internal class Test
     private static Foo s_foo = new Foo();
     private static Foo[] s_fooArray = new Foo[10];
 
-    static public int Main()
+    public static int Main()
     {
-        int iReturn = 100;
+        int returnCode = 100;
         try
         {
             IsObjectType(s_object, true);
@@ -52,10 +52,10 @@ internal class Test
             Console.WriteLine(e);
             Console.WriteLine("Test FAILED");
 
-            iReturn = 666;
+            returnCode = 666;
         }
 
-        return iReturn;
+        return returnCode;
     }
 
     private static void IsResultCorrect(bool result, bool baseline)