Skip to content

Commit 20864bf

Browse files
committed
Make seed field of Randomizer public.
1 parent a2aed2f commit 20864bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scalatest/src/main/scala/org/scalatest/prop/Randomizer.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ import java.lang.Double.{longBitsToDouble, doubleToLongBits}
4747
*
4848
* @param seed
4949
*/
50-
class Randomizer(private[scalatest] val seed: Long) { thisRandomizer =>
50+
class Randomizer(val seed: Long) { thisRandomizer =>
5151

5252
private[scalatest] lazy val scrambledSeed: Long = seed
5353

0 commit comments

Comments
 (0)