summaryrefslogtreecommitdiff
path: root/src/mscorlib
diff options
context:
space:
mode:
authorRichard Lander <rlander@microsoft.com>2015-10-19 09:26:00 -0700
committerRichard Lander <rlander@microsoft.com>2015-10-20 22:02:17 -0700
commit086b32fbef099b8be50683ea942ee09fd8021866 (patch)
treefcd24d06303fe4d362c9b7669d0afaa5d225dff3 /src/mscorlib
parent6b091902c7f2cc2578a8fb34a7ce8115f0f9cb8b (diff)
downloadcoreclr-086b32fbef099b8be50683ea942ee09fd8021866.tar.gz
coreclr-086b32fbef099b8be50683ea942ee09fd8021866.tar.bz2
coreclr-086b32fbef099b8be50683ea942ee09fd8021866.zip
Remove NR reference
After speaking to the authors, the attribution comment is not required for this instance. However, Numerical Recipes in C is an awesome book written by some very smart and classy folks. It's a great book.
Diffstat (limited to 'src/mscorlib')
-rw-r--r--src/mscorlib/src/System/Random.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mscorlib/src/System/Random.cs b/src/mscorlib/src/System/Random.cs
index ef88431e4a..59eb48cedc 100644
--- a/src/mscorlib/src/System/Random.cs
+++ b/src/mscorlib/src/System/Random.cs
@@ -55,7 +55,6 @@ namespace System {
int mj, mk;
//Initialize our Seed array.
- //This algorithm comes from Numerical Recipes in C (2nd Ed.)
int subtraction = (Seed == Int32.MinValue) ? Int32.MaxValue : Math.Abs(Seed);
mj = MSEED - subtraction;
SeedArray[55]=mj;