summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/typechecker/Implicits.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2009-12-17 18:06:47 +0000
committerMartin Odersky <odersky@gmail.com>2009-12-17 18:06:47 +0000
commit248a992059f090070a01a9c98271753c84df8319 (patch)
tree15859f71f0cee396cc115335061646ccfcba0cf0 /src/compiler/scala/tools/nsc/typechecker/Implicits.scala
parent88683ede7df66a276835319d4d580f605420fa01 (diff)
downloadscala-248a992059f090070a01a9c98271753c84df8319.tar.gz
scala-248a992059f090070a01a9c98271753c84df8319.tar.bz2
scala-248a992059f090070a01a9c98271753c84df8319.zip
Fixed build problem caused by r20203.
Diffstat (limited to 'src/compiler/scala/tools/nsc/typechecker/Implicits.scala')
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/Implicits.scala3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/Implicits.scala b/src/compiler/scala/tools/nsc/typechecker/Implicits.scala
index 34b98a8945..eea0835144 100644
--- a/src/compiler/scala/tools/nsc/typechecker/Implicits.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/Implicits.scala
@@ -725,14 +725,13 @@ self: Analyzer =>
def manifestFactoryCall(constructor: String, tparg: Type, args: Tree*): Tree =
if (args contains EmptyTree) EmptyTree
else typedPos(tree.pos.focus) {
- util.trace("manif fact ")(
Apply(
TypeApply(
Select(gen.mkAttributedRef(if (full) FullManifestModule else PartialManifestModule), constructor),
List(TypeTree(tparg))
),
args.toList
- ))
+ )
}
/** Creates a tree representing one of the singleton manifests.*/