File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -254,7 +254,7 @@ final class IterableOnceExtensionMethods[A](private val it: IterableOnce[A]) ext
254
254
}
255
255
256
256
object IterableOnce {
257
- @ ` inline` implicit def iterableOnceExtensionMethods [A ](it : IterableOnce [A ]): IterableOnceExtensionMethods [A ] =
257
+ @ inline implicit def iterableOnceExtensionMethods [A ](it : IterableOnce [A ]): IterableOnceExtensionMethods [A ] =
258
258
new IterableOnceExtensionMethods [A ](it)
259
259
260
260
/** Computes the number of elements to copy to an array from a source IterableOnce
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ object BigInt {
123
123
124
124
/** Implicit conversion from `java.math.BigInteger` to `scala.BigInt`.
125
125
*/
126
- implicit def javaBigInteger2bigInt (x : BigInteger ): BigInt = apply(x)
126
+ implicit def javaBigInteger2bigInt (x : BigInteger ): BigInt = if (x eq null ) null else apply(x)
127
127
128
128
// this method is adapted from Google Guava's version at
129
129
// https://github.com/google/guava/blob/master/guava/src/com/google/common/math/LongMath.java
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ package util
16
16
import scala .language .implicitConversions
17
17
18
18
trait ChainingSyntax {
19
- @ ` inline` implicit final def scalaUtilChainingOps [A ](a : A ): ChainingOps [A ] = new ChainingOps (a)
19
+ @ inline implicit final def scalaUtilChainingOps [A ](a : A ): ChainingOps [A ] = new ChainingOps (a)
20
20
}
21
21
22
22
/** Adds chaining methods `tap` and `pipe` to every type.
You can’t perform that action at this time.
0 commit comments