summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-05-18 22:01:08 +0000
committerAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-05-18 22:01:08 +0000
commitb7781f0d875ea3a9e9b94d0344b806702680aeb9 (patch)
tree27d801aa4d3f88a24ebd1f28f6fab4e2af804b3d /src
parente0c2758ed3c1bfb97047e9361de1f495f41e4804 (diff)
downloadscala-b7781f0d875ea3a9e9b94d0344b806702680aeb9.tar.gz
scala-b7781f0d875ea3a9e9b94d0344b806702680aeb9.tar.bz2
scala-b7781f0d875ea3a9e9b94d0344b806702680aeb9.zip
Changed migration annotation to deprecated.
Diffstat (limited to 'src')
-rw-r--r--src/library/scala/math/BigDecimal.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/math/BigDecimal.scala b/src/library/scala/math/BigDecimal.scala
index 90ad43fe7f..aa238914a1 100644
--- a/src/library/scala/math/BigDecimal.scala
+++ b/src/library/scala/math/BigDecimal.scala
@@ -249,7 +249,7 @@ extends ScalaNumber with ScalaNumericConversions
/** Remainder after dividing this by that.
*/
- @migration(2, 8, "As of 2.8, the prefered way to calculate division remainder is to use method `%`.")
+ @deprecated("As of 2.8, the prefered way to calculate division remainder is to use method `%`.")
def remainder (that: BigDecimal): BigDecimal = this.bigDecimal.remainder(that.bigDecimal, mc)
/** Remainder after dividing this by that.