From 65bdf93bee95245094c4297da9ab0aa02d3a7824 Mon Sep 17 00:00:00 2001 From: monojenkins Date: Fri, 20 Mar 2020 08:08:15 -0400 Subject: [PATCH] Remove dead code from bug-10127.cs. (#31976) Co-authored-by: jaykrell --- src/mono/mono/tests/bug-10127.cs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/mono/mono/tests/bug-10127.cs b/src/mono/mono/tests/bug-10127.cs index 32ca6309a12..bd24498229f 100644 --- a/src/mono/mono/tests/bug-10127.cs +++ b/src/mono/mono/tests/bug-10127.cs @@ -72,17 +72,6 @@ namespace WeakReferenceTest } - static class RandHelper { - public static string RandString(this Random rand, int len) - { - char[] table = new char[len]; - for (int idx = 0; idx < len; idx++) { - table[idx] = (char) ('a' + idx); - } - return new string(table, 0, len); - } - } - class MainClass { public static void Main (string[] args) -- 2.34.1