summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/compiler/scala/reflect/runtime/ConversionUtil.scala4
1 files changed, 2 insertions, 2 deletions
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
}