aboutsummaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorGuillaume Martres <smarter@ubuntu.com>2017-03-05 20:54:29 +0900
committerGuillaume Martres <smarter@ubuntu.com>2017-03-08 13:30:48 +0100
commit279dd3b2065fcdbb2c561a9a68487696dd4923b4 (patch)
treee7f99697434149c93fceb4cce530c7c19e1ea2b1 /compiler
parent739a730954e399e7a431b852410f684d0c92fb2f (diff)
downloaddotty-279dd3b2065fcdbb2c561a9a68487696dd4923b4.tar.gz
dotty-279dd3b2065fcdbb2c561a9a68487696dd4923b4.tar.bz2
dotty-279dd3b2065fcdbb2c561a9a68487696dd4923b4.zip
Remove unused methods depending on scala-reflect
Diffstat (limited to 'compiler')
-rw-r--r--compiler/src/dotty/tools/dotc/util/FreshNameCreator.scala5
1 files changed, 0 insertions, 5 deletions
diff --git a/compiler/src/dotty/tools/dotc/util/FreshNameCreator.scala b/compiler/src/dotty/tools/dotc/util/FreshNameCreator.scala
index 521947895..8892a570e 100644
--- a/compiler/src/dotty/tools/dotc/util/FreshNameCreator.scala
+++ b/compiler/src/dotty/tools/dotc/util/FreshNameCreator.scala
@@ -6,11 +6,6 @@ import scala.collection.mutable
trait FreshNameCreator {
def newName(prefix: String = ""): String
-
- @deprecated("use newName(prefix)", "2.9.0")
- def newName(pos: scala.reflect.internal.util.Position, prefix: String): String = newName(prefix)
- @deprecated("use newName()", "2.9.0")
- def newName(pos: scala.reflect.internal.util.Position): String = newName()
}
object FreshNameCreator {