summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Kossakowski <grzegorz.kossakowski@gmail.com>2013-07-27 22:15:30 -0700
committerGrzegorz Kossakowski <grzegorz.kossakowski@gmail.com>2013-07-27 22:15:30 -0700
commite4cb531fa93f1e8f58189cc4b807fe5c5a1a5861 (patch)
treefdfee83c7ce331886dab7daa81e3236c35f2290a
parenteeb0a07ba3ba5f365fe7369c9d02f5731ed803a2 (diff)
parentcf30b40ab782f902f514b15f1e2116b47626ebf4 (diff)
downloadscala-e4cb531fa93f1e8f58189cc4b807fe5c5a1a5861.tar.gz
scala-e4cb531fa93f1e8f58189cc4b807fe5c5a1a5861.tar.bz2
scala-e4cb531fa93f1e8f58189cc4b807fe5c5a1a5861.zip
Merge pull request #2754 from soc/SI-7679-remove-standardscalasettings-make
SI-7679 Remove deprecated StandardScalaSettings#make
-rw-r--r--src/compiler/scala/tools/nsc/settings/StandardScalaSettings.scala2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/compiler/scala/tools/nsc/settings/StandardScalaSettings.scala b/src/compiler/scala/tools/nsc/settings/StandardScalaSettings.scala
index d173aaa848..37dfafb01c 100644
--- a/src/compiler/scala/tools/nsc/settings/StandardScalaSettings.scala
+++ b/src/compiler/scala/tools/nsc/settings/StandardScalaSettings.scala
@@ -35,8 +35,6 @@ trait StandardScalaSettings {
val feature = BooleanSetting ("-feature", "Emit warning and location for usages of features that should be imported explicitly.")
val g = ChoiceSetting ("-g", "level", "Set level of generated debugging info.", List("none", "source", "line", "vars", "notailcalls"), "vars")
val help = BooleanSetting ("-help", "Print a synopsis of standard options")
- val make = ChoiceSetting ("-make", "policy", "Recompilation detection policy", List("all", "changed", "immediate", "transitive", "transitivenocp"), "all")
- . withDeprecationMessage ("this option is unmaintained. Use sbt or an IDE for selective recompilation.")
val nowarn = BooleanSetting ("-nowarn", "Generate no warnings.")
val optimise: BooleanSetting // depends on post hook which mutates other settings
val print = BooleanSetting ("-print", "Print program with Scala-specific features removed.")