Skip to content

Commit

Permalink
Fix paren convention
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacl committed Sep 13, 2024
1 parent 2a3716d commit 89b82f3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lila/src/main/scala/Random.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ object SecureRandom extends RandomApi:
private abstract class RandomApi:
protected def impl: java.util.Random

def nextBoolean = impl.nextBoolean
def nextDouble = impl.nextDouble
def nextFloat = impl.nextFloat
def nextGaussian = impl.nextGaussian
def nextInt = impl.nextInt
def nextLong = impl.nextLong
def nextBoolean() = impl.nextBoolean
def nextDouble() = impl.nextDouble
def nextFloat() = impl.nextFloat
def nextGaussian() = impl.nextGaussian
def nextInt() = impl.nextInt
def nextLong() = impl.nextLong

def nextBytes(len: Int): Array[Byte] =
val bytes = new Array[Byte](len)
Expand Down

0 comments on commit 89b82f3

Please sign in to comment.