summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/settings/AbsSettings.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-02-22 05:01:06 +0000
committerPaul Phillips <paulp@improving.org>2011-02-22 05:01:06 +0000
commitbe9a1788b58bdf3ba70e5a39fbab2a30c082ca27 (patch)
treee4233915b40d00e7e90dcd55b3224c92e0ef52db /src/compiler/scala/tools/nsc/settings/AbsSettings.scala
parenta7c77669bd605127c99a40ce77a70ffc382d8639 (diff)
downloadscala-be9a1788b58bdf3ba70e5a39fbab2a30c082ca27.tar.gz
scala-be9a1788b58bdf3ba70e5a39fbab2a30c082ca27.tar.bz2
scala-be9a1788b58bdf3ba70e5a39fbab2a30c082ca27.zip
Changes to startup.
default. The -toolcp option now works. -D and -J options are passed as arguments to the runner program as well as to the underlying JVM, because they may be needed for such things as fsc talking to a server compiler. Added a new Settings type for -D and -J options. Deleted some dead settings code. There are dummy settings for -toolcp and -nobootcp so they can be seen in the help output, which needs a big cleanup. No review.
Diffstat (limited to 'src/compiler/scala/tools/nsc/settings/AbsSettings.scala')
-rw-r--r--src/compiler/scala/tools/nsc/settings/AbsSettings.scala9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/compiler/scala/tools/nsc/settings/AbsSettings.scala b/src/compiler/scala/tools/nsc/settings/AbsSettings.scala
index 2e065a936c..0cc3be6e64 100644
--- a/src/compiler/scala/tools/nsc/settings/AbsSettings.scala
+++ b/src/compiler/scala/tools/nsc/settings/AbsSettings.scala
@@ -106,15 +106,6 @@ trait AbsSettings {
protected[nsc] def tryToSetColon(args: List[String]): Option[ResultOfTryToSet] =
errorAndValue("'%s' does not accept multiple arguments" format name, None)
- /** Commands which take properties in form -Dfoo=bar or -Dfoo
- */
- protected[nsc] def tryToSetProperty(args: List[String]): Option[ResultOfTryToSet] =
- errorAndValue("'%s' does not accept property style arguments" format name, None)
-
- /** Attempt to set from a properties file style property value.
- */
- def tryToSetFromPropertyValue(s: String): Unit = tryToSet(s :: Nil)
-
/** These categorizations are so the help output shows -X and -P among
* the standard options and -Y among the advanced options.
*/