From dd050a6a632eaeb43647e7f4e0d5a5f4c5a2dc41 Mon Sep 17 00:00:00 2001 From: Martin Odersky Date: Tue, 30 Aug 2011 16:42:15 +0000 Subject: removing more debug output from reflection. --- src/compiler/scala/reflect/runtime/ConversionUtil.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/compiler/scala/reflect/runtime/ConversionUtil.scala b/src/compiler/scala/reflect/runtime/ConversionUtil.scala index 393585da7c..3ffcf9de03 100644 --- a/src/compiler/scala/reflect/runtime/ConversionUtil.scala +++ b/src/compiler/scala/reflect/runtime/ConversionUtil.scala @@ -7,7 +7,7 @@ import java.lang.reflect.{ Member => jMember, Type => jType, TypeVariable => jTypeVariable, GenericDeclaration} import collection.mutable.HashMap -trait ConversionUtil { self: internal.SymbolTable => +trait ConversionUtil { self: SymbolTable => /** A cache that maintains a bijection between Java reflection type `J` * and Scala reflection type `S`. @@ -18,7 +18,7 @@ trait ConversionUtil { self: internal.SymbolTable => private val toJavaMap = new HashMap[S, J] def enter(j: J, s: S) = { - println("cached: "+j+"/"+s) + info("cached: "+j+"/"+s) toScalaMap(j) = s toJavaMap(s) = j } -- cgit v1.2.3