File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ object Tuple {
16
16
case self : Product => productToArray(self).asInstanceOf [IArray [Object ]]
17
17
}
18
18
19
- def productToArray (self : Product ): Array [Object ] = {
19
+ private def productToArray (self : Product ): Array [Object ] = {
20
20
val arr = new Array [Object ](self.productArity)
21
21
var i = 0
22
22
while (i < arr.length) {
Original file line number Diff line number Diff line change @@ -156,11 +156,11 @@ object FromDigits {
156
156
x
157
157
}
158
158
159
- given BigIntFromDigits as FromDigits . WithRadix [BigInt ] {
159
+ given BigIntFromDigits as WithRadix [BigInt ] {
160
160
def fromDigits (digits : String , radix : Int ): BigInt = BigInt (digits, radix)
161
161
}
162
162
163
- given BigDecimalFromDigits as FromDigits . Floating [BigDecimal ] {
163
+ given BigDecimalFromDigits as Floating [BigDecimal ] {
164
164
def fromDigits (digits : String ): BigDecimal = BigDecimal (digits)
165
165
}
166
166
}
You can’t perform that action at this time.
0 commit comments