summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2013-01-15 07:27:53 -0800
committerPaul Phillips <paulp@improving.org>2013-01-15 07:27:53 -0800
commit621f7a56c21686ebbd39b8ffe9282f917fe1f128 (patch)
tree028f2fa82d23ad70936051bbc1aa7cb6fb55b897 /src
parent9731065e4ed59cce2d9bb435b0ea94aae826bea3 (diff)
parent0c2e8842036876c6b824fbbb68fc7100ef62e02d (diff)
downloadscala-621f7a56c21686ebbd39b8ffe9282f917fe1f128.tar.gz
scala-621f7a56c21686ebbd39b8ffe9282f917fe1f128.tar.bz2
scala-621f7a56c21686ebbd39b8ffe9282f917fe1f128.zip
Merge pull request #1895 from JamesIry/SI_6963_2.10.x
SI-6963 Deprecates -Xmigration switch
Diffstat (limited to 'src')
-rw-r--r--src/compiler/scala/tools/nsc/settings/ScalaSettings.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/settings/ScalaSettings.scala b/src/compiler/scala/tools/nsc/settings/ScalaSettings.scala
index 517b91dca8..b820d10ddc 100644
--- a/src/compiler/scala/tools/nsc/settings/ScalaSettings.scala
+++ b/src/compiler/scala/tools/nsc/settings/ScalaSettings.scala
@@ -85,7 +85,8 @@ trait ScalaSettings extends AbsScalaSettings
val logFreeTerms = BooleanSetting ("-Xlog-free-terms", "Print a message when reification creates a free term.")
val logFreeTypes = BooleanSetting ("-Xlog-free-types", "Print a message when reification resorts to generating a free type.")
val maxClassfileName = IntSetting ("-Xmax-classfile-name", "Maximum filename length for generated classes", 255, Some((72, 255)), _ => None)
- val Xmigration28 = BooleanSetting ("-Xmigration", "Warn about constructs whose behavior may have changed between 2.7 and 2.8.")
+ val Xmigration28 = BooleanSetting ("-Xmigration", "Warn about constructs whose behavior may have changed between 2.7 and 2.8.").
+ withDeprecationMessage("This setting is no longer useful and will be removed. Please remove it from your build.")
val nouescape = BooleanSetting ("-Xno-uescape", "Disable handling of \\u unicode escapes.")
val Xnojline = BooleanSetting ("-Xnojline", "Do not use JLine for editing.")
val Xverify = BooleanSetting ("-Xverify", "Verify generic signatures in generated bytecode (asm backend only.)")