From: Richard L Ford Date: Tue, 10 Nov 2015 18:08:07 +0000 (-0800) Subject: Respond to review of gettypetypeofmatrix test. X-Git-Tag: accepted/tizen/base/20180629.140029~6186^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4d2f3eb9aabc3bcb5a6ba10175869f4358cff989;p=platform%2Fupstream%2Fcoreclr.git 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. --- 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)