summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@epfl.ch>2012-07-19 07:06:49 -0700
committerAdriaan Moors <adriaan.moors@epfl.ch>2012-07-19 07:06:49 -0700
commit19bea8c54eb59808b9780738c59220583ad95c60 (patch)
tree4cbf5f08789ad2a8e10b4e28132408fe08118be3 /src
parentb63583036a57cffc1015b55deba3c9e64e345081 (diff)
parent4324282f27f2dadf90213882d3f5f346940bc0fd (diff)
downloadscala-19bea8c54eb59808b9780738c59220583ad95c60.tar.gz
scala-19bea8c54eb59808b9780738c59220583ad95c60.tar.bz2
scala-19bea8c54eb59808b9780738c59220583ad95c60.zip
Merge pull request #944 from dgruntz/issue/Epsilon
Removes Float.Epsilon and Double.Epsilon
Diffstat (limited to 'src')
-rw-r--r--src/library/scala/Double.scala3
-rw-r--r--src/library/scala/Float.scala3
2 files changed, 0 insertions, 6 deletions
diff --git a/src/library/scala/Double.scala b/src/library/scala/Double.scala
index 2ff46c433d..510de92a2a 100644
--- a/src/library/scala/Double.scala
+++ b/src/library/scala/Double.scala
@@ -370,9 +370,6 @@ object Double extends AnyValCompanion {
final val PositiveInfinity = java.lang.Double.POSITIVE_INFINITY
final val NegativeInfinity = java.lang.Double.NEGATIVE_INFINITY
- @deprecated("use Double.MinPositiveValue instead", "2.9.0")
- final val Epsilon = MinPositiveValue
-
/** The negative number with the greatest (finite) absolute value which is representable
* by a Double. Note that it differs from [[java.lang.Double.MIN_VALUE]], which
* is the smallest positive value representable by a Double. In Scala that number
diff --git a/src/library/scala/Float.scala b/src/library/scala/Float.scala
index bd7a07fece..b9c116da0b 100644
--- a/src/library/scala/Float.scala
+++ b/src/library/scala/Float.scala
@@ -370,9 +370,6 @@ object Float extends AnyValCompanion {
final val PositiveInfinity = java.lang.Float.POSITIVE_INFINITY
final val NegativeInfinity = java.lang.Float.NEGATIVE_INFINITY
- @deprecated("use Float.MinPositiveValue instead", "2.9.0")
- final val Epsilon = MinPositiveValue
-
/** The negative number with the greatest (finite) absolute value which is representable
* by a Float. Note that it differs from [[java.lang.Float.MIN_VALUE]], which
* is the smallest positive value representable by a Float. In Scala that number