summaryrefslogtreecommitdiff
path: root/src/library/scala/math/BigInt.scala
diff options
context:
space:
mode:
authorSimon Ochsenreither <simon@ochsenreither.de>2012-09-21 20:04:05 +0200
committerSimon Ochsenreither <simon@ochsenreither.de>2012-10-08 05:24:57 +0200
commitc52f91ca0db573fdfc879ae199a237db256d7523 (patch)
treec96beb2779d34498aefd368271958bdfa5bb4c6d /src/library/scala/math/BigInt.scala
parentd43a3efe813ade912d34b48bd11b56e8762c3e01 (diff)
downloadscala-c52f91ca0db573fdfc879ae199a237db256d7523.tar.gz
scala-c52f91ca0db573fdfc879ae199a237db256d7523.tar.bz2
scala-c52f91ca0db573fdfc879ae199a237db256d7523.zip
SI-6388 Remove deprecated items in scala/math
Diffstat (limited to 'src/library/scala/math/BigInt.scala')
-rw-r--r--src/library/scala/math/BigInt.scala6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/library/scala/math/BigInt.scala b/src/library/scala/math/BigInt.scala
index 3eb41053f7..9218e41ceb 100644
--- a/src/library/scala/math/BigInt.scala
+++ b/src/library/scala/math/BigInt.scala
@@ -23,12 +23,6 @@ object BigInt {
private val cache = new Array[BigInt](maxCached - minCached + 1)
private val minusOne = BigInteger.valueOf(-1)
- @deprecated("Use Long.MinValue", "2.9.0")
- val MinLong = BigInt(Long.MinValue)
-
- @deprecated("Use Long.MaxValue", "2.9.0")
- val MaxLong = BigInt(Long.MaxValue)
-
/** Constructs a `BigInt` whose value is equal to that of the
* specified integer value.
*