summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/GenericRunnerSettings.scala
diff options
context:
space:
mode:
authorSimon Ochsenreither <simon@ochsenreither.de>2012-09-21 21:14:19 +0200
committerSimon Ochsenreither <simon@ochsenreither.de>2012-10-08 05:24:41 +0200
commit17fd905e868db7de4c7f9046bb9c4937e281c1fe (patch)
tree52fa111b1d86d12f9bdf28e526b4f35ab6d2fc10 /src/compiler/scala/tools/nsc/GenericRunnerSettings.scala
parent7be1652cbf1300fe5fea44681a480c33467c2296 (diff)
downloadscala-17fd905e868db7de4c7f9046bb9c4937e281c1fe.tar.gz
scala-17fd905e868db7de4c7f9046bb9c4937e281c1fe.tar.bz2
scala-17fd905e868db7de4c7f9046bb9c4937e281c1fe.zip
SI-6388 Remove deprecated items in the compiler jar
Deprecations in the following files were not removed to prevent SBT from breaking: - src/compiler/scala/tools/nsc/Interpreter.scala - src/compiler/scala/tools/nsc/InterpreterLoop.scala - src/compiler/scala/tools/nsc/interpreter/ILoop.scala - src/compiler/scala/tools/nsc/interpreter/InteractiveReader.scala
Diffstat (limited to 'src/compiler/scala/tools/nsc/GenericRunnerSettings.scala')
-rw-r--r--src/compiler/scala/tools/nsc/GenericRunnerSettings.scala3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/compiler/scala/tools/nsc/GenericRunnerSettings.scala b/src/compiler/scala/tools/nsc/GenericRunnerSettings.scala
index b2f27d1925..00e374db62 100644
--- a/src/compiler/scala/tools/nsc/GenericRunnerSettings.scala
+++ b/src/compiler/scala/tools/nsc/GenericRunnerSettings.scala
@@ -39,7 +39,4 @@ class GenericRunnerSettings(error: String => Unit) extends Settings(error) {
val nc = BooleanSetting(
"-nc",
"do not use the fsc compilation daemon") withAbbreviation "-nocompdaemon"
-
- @deprecated("Use `nc` instead", "2.9.0") def nocompdaemon = nc
- @deprecated("Use `save` instead", "2.9.0") def savecompiled = save
}