summaryrefslogtreecommitdiff
path: root/src/library/scala/BigInt.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scala/BigInt.scala')
-rw-r--r--src/library/scala/BigInt.scala7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/library/scala/BigInt.scala b/src/library/scala/BigInt.scala
index c03238680e..ac8b4c40a7 100644
--- a/src/library/scala/BigInt.scala
+++ b/src/library/scala/BigInt.scala
@@ -101,13 +101,6 @@ object BigInt {
/** Implicit copnversion from long to BigInt
*/
implicit def long2bigInt(l: Long): BigInt = apply(l)
-
- /** Implicit conversion from BigInt to <code>Ordered</code>.
- */
- implicit def bigInt2ordered(x: BigInt): Ordered[BigInt] = new Ordered[BigInt] with Proxy {
- def self: Any = x;
- def compare (y: BigInt): Int = x.bigInteger.compareTo(y.bigInteger)
- }
}
/**