From 4d2f3eb9aabc3bcb5a6ba10175869f4358cff989 Mon Sep 17 00:00:00 2001 From: Richard L Ford Date: Tue, 10 Nov 2015 10:08:07 -0800 Subject: [PATCH] Respond to review of gettypetypeofmatrix test. 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 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/src/JIT/Directed/gettypetypeof/gettypetypeofmatrix.cs b/tests/src/JIT/Directed/gettypetypeof/gettypetypeofmatrix.cs index aa014d5..dc0029b 100644 --- a/tests/src/JIT/Directed/gettypetypeof/gettypetypeofmatrix.cs +++ b/tests/src/JIT/Directed/gettypetypeof/gettypetypeofmatrix.cs @@ -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) -- 2.7.4