summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/symtab/Constants.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler/scala/tools/nsc/symtab/Constants.scala')
-rw-r--r--src/compiler/scala/tools/nsc/symtab/Constants.scala5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/compiler/scala/tools/nsc/symtab/Constants.scala b/src/compiler/scala/tools/nsc/symtab/Constants.scala
index 1bc5ddc489..e622d85d47 100644
--- a/src/compiler/scala/tools/nsc/symtab/Constants.scala
+++ b/src/compiler/scala/tools/nsc/symtab/Constants.scala
@@ -1,5 +1,5 @@
/* NSC -- new Scala compiler
- * Copyright 2005-2006 LAMP/EPFL
+ * Copyright 2005-2007 LAMP/EPFL
* @author Martin Odersky
*/
// $Id$
@@ -8,7 +8,6 @@ package scala.tools.nsc.symtab
import java.lang.Integer.toOctalString
-import compat.StringBuilder
import classfile.PickleFormat._
@@ -200,7 +199,7 @@ trait Constants {
def escapedStringValue: String = {
def escape(text: String): String = {
val buf = new StringBuilder
- for (val c <- Iterator.fromString(text))
+ for (c <- Iterator.fromString(text))
if (c.isControl)
buf.append("\\0" + toOctalString(c.asInstanceOf[Int]))
else