summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-04-12 10:27:40 +0000
committerGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-04-12 10:27:40 +0000
commit6fe5b44d311537a8e7ce779c81986ba27418664e (patch)
treeabba425a2fef41f88e19024c8bac1d076e8a556c
parent890a7c509552fe97f8df00833c3d57d556ca6337 (diff)
downloadscala-6fe5b44d311537a8e7ce779c81986ba27418664e.tar.gz
scala-6fe5b44d311537a8e7ce779c81986ba27418664e.tar.bz2
scala-6fe5b44d311537a8e7ce779c81986ba27418664e.zip
Commented out the println which was causing pos...
Commented out the println which was causing pos/t0674.scala to fail.
-rw-r--r--src/compiler/scala/tools/nsc/symtab/Names.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/symtab/Names.scala b/src/compiler/scala/tools/nsc/symtab/Names.scala
index aafdca2a8a..4b6141134a 100644
--- a/src/compiler/scala/tools/nsc/symtab/Names.scala
+++ b/src/compiler/scala/tools/nsc/symtab/Names.scala
@@ -87,7 +87,7 @@ class Names {
private lazy val md5 = MessageDigest.getInstance("MD5")
private def toMD5(s: String, prefixSuffixLen: Int) = {
- println("COMPACTIFY "+s)
+// println("COMPACTIFY "+s)
val cs: Array[Char] = s.toCharArray
val bytes = new Array[Byte](cs.length * 4)
val len = UTF8Codec.encode(cs, 0, bytes, 0, cs.length)