From 3e249d85e40b5cf7795a4cdd5f64c0e68e5a4166 Mon Sep 17 00:00:00 2001 From: Martin Odersky Date: Thu, 24 Jan 2008 14:57:15 +0000 Subject: reverted changes wrt raw types. --- src/compiler/scala/tools/nsc/typechecker/Infer.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/compiler/scala/tools/nsc/typechecker/Infer.scala b/src/compiler/scala/tools/nsc/typechecker/Infer.scala index 1e6bc6360a..eb56efe633 100644 --- a/src/compiler/scala/tools/nsc/typechecker/Infer.scala +++ b/src/compiler/scala/tools/nsc/typechecker/Infer.scala @@ -341,14 +341,14 @@ trait Infer { // are converted to existentials C[T] forSome { type T }. // We can't do this on class loading because it would result // in infinite cycles. - if (sym1.isTerm) { + if (sym1.isTerm) { /* if (sym1 hasFlag JAVA) sym1.setInfo(rawToExistential(sym1.info)) else if (sym1 hasFlag OVERLOADED) for (sym2 <- sym1.alternatives) if (sym2 hasFlag JAVA) sym2.setInfo(rawToExistential(sym2.info)) - } + */} //Console.println("check acc " + sym1 + ":" + sym1.tpe + " from " + pre);//DEBUG var owntype = try{ pre.memberType(sym1) -- cgit v1.2.3