summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/io
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-02-01 14:05:25 -0800
committerPaul Phillips <paulp@improving.org>2012-02-01 14:09:23 -0800
commit68218fa678abfce9cce9f764e3cb9463ce6e0b85 (patch)
tree7e05e3156b2f6fcb4c7cd326cdd1d89ef420aba5 /src/compiler/scala/tools/nsc/io
parent264ff5d5e8dbec4ae2e13bf52e66a965d884b25c (diff)
downloadscala-68218fa678abfce9cce9f764e3cb9463ce6e0b85.tar.gz
scala-68218fa678abfce9cce9f764e3cb9463ce6e0b85.tar.bz2
scala-68218fa678abfce9cce9f764e3cb9463ce6e0b85.zip
Update RoundingMode.
Not to use the deprecated Enumeration constructor.
Diffstat (limited to 'src/compiler/scala/tools/nsc/io')
-rw-r--r--src/compiler/scala/tools/nsc/io/Path.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/io/Path.scala b/src/compiler/scala/tools/nsc/io/Path.scala
index 9efff089ba..a1b8e5e4d5 100644
--- a/src/compiler/scala/tools/nsc/io/Path.scala
+++ b/src/compiler/scala/tools/nsc/io/Path.scala
@@ -48,7 +48,7 @@ object Path {
implicit def jfile2path(jfile: JFile): Path = apply(jfile)
// java 7 style, we don't use it yet
- // object AccessMode extends Enumeration("AccessMode") {
+ // object AccessMode extends Enumeration {
// val EXECUTE, READ, WRITE = Value
// }
// def checkAccess(modes: AccessMode*): Boolean = {