From 06f82cc1601f9a8c3da31c0df07878df741c7094 Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Mon, 22 Jun 2020 21:12:07 -0700 Subject: [PATCH] Remove unused params. --- react-slideshow/src/rand.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react-slideshow/src/rand.js b/react-slideshow/src/rand.js index 2d2344d..c52754d 100644 --- a/react-slideshow/src/rand.js +++ b/react-slideshow/src/rand.js @@ -22,7 +22,7 @@ Random.prototype.next = function () { /** * Returns a pseudo-random floating point number in range [0, 1). */ -Random.prototype.nextFloat = function (opt_minOrMax, opt_max) { +Random.prototype.nextFloat = function () { // We know that result of next() will be 1 to 2147483646 (inclusive). return (this.next() - 1) / 2147483646; };