projects
/
platform
/
upstream
/
dotnet
/
runtime.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
209d3a3
)
Remove dead code from bug-10127.cs. (#31976)
author
monojenkins
<jo.shields+jenkins@xamarin.com>
Fri, 20 Mar 2020 12:08:15 +0000
(08:08 -0400)
committer
GitHub
<noreply@github.com>
Fri, 20 Mar 2020 12:08:15 +0000
(13:08 +0100)
Co-authored-by: jaykrell <jaykrell@users.noreply.github.com>
src/mono/mono/tests/bug-10127.cs
patch
|
blob
|
history
diff --git
a/src/mono/mono/tests/bug-10127.cs
b/src/mono/mono/tests/bug-10127.cs
index 32ca6309a127f26608cea85c483dc0a84d390533..bd24498229f13f099603a84ff8364338a3450044 100644
(file)
--- 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)