Rename Random.next* parameters: remaining renames
- Correct docs after parameter renaming - Rename parameters in Random inheritors - Rename local variables #KT-26596
This commit is contained in:
@@ -42,7 +42,7 @@ internal abstract class AbstractPlatformRandom : Random() {
|
||||
impl.nextInt().takeUpperBits(bitCount)
|
||||
|
||||
override fun nextInt(): Int = impl.nextInt()
|
||||
override fun nextInt(bound: Int): Int = impl.nextInt(bound)
|
||||
override fun nextInt(until: Int): Int = impl.nextInt(until)
|
||||
override fun nextLong(): Long = impl.nextLong()
|
||||
override fun nextBoolean(): Boolean = impl.nextBoolean()
|
||||
override fun nextDouble(): Double = impl.nextDouble()
|
||||
|
||||
Reference in New Issue
Block a user