summaryrefslogtreecommitdiff
path: root/src/scalap
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-02-04 12:26:02 +0000
committerPaul Phillips <paulp@improving.org>2010-02-04 12:26:02 +0000
commit93277ea0201f139e829cfd7248142a0c5898d9ce (patch)
tree68b70cc55b37c437b10c051bb60c390e9249fdc0 /src/scalap
parent2b82a20d75629e7bdd2fd3d4d4613fc2ef072a78 (diff)
downloadscala-93277ea0201f139e829cfd7248142a0c5898d9ce.tar.gz
scala-93277ea0201f139e829cfd7248142a0c5898d9ce.tar.bz2
scala-93277ea0201f139e829cfd7248142a0c5898d9ce.zip
Noticed that all the system properties were bei...
Noticed that all the system properties were being read into vals so they didn't notice changes. Determined this was not correct, and changed them into defs. No review.
Diffstat (limited to 'src/scalap')
-rw-r--r--src/scalap/scala/tools/scalap/Properties.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scalap/scala/tools/scalap/Properties.scala b/src/scalap/scala/tools/scalap/Properties.scala
index f433737896..72a4513b8b 100644
--- a/src/scalap/scala/tools/scalap/Properties.scala
+++ b/src/scalap/scala/tools/scalap/Properties.scala
@@ -14,5 +14,5 @@ object Properties extends scala.util.PropertiesTrait
{
protected def propCategory = "decoder"
protected def pickJarBasedOn = classOf[Classfile]
- val cmdName = scala.tools.nsc.Properties.cmdName
+ def cmdName = scala.tools.nsc.Properties.cmdName
}