summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-01-11 16:31:44 +0000
committerPaul Phillips <paulp@improving.org>2010-01-11 16:31:44 +0000
commit91e88b3f7d4a2765c11bf4ac5495eb7c329bc18e (patch)
tree2c8d1154a18f108baa61eed723943df34aa22172 /src
parentaa6811dae63665a1eec7dd9de53b10970b0bfc53 (diff)
downloadscala-91e88b3f7d4a2765c11bf4ac5495eb7c329bc18e.tar.gz
scala-91e88b3f7d4a2765c11bf4ac5495eb7c329bc18e.tar.bz2
scala-91e88b3f7d4a2765c11bf4ac5495eb7c329bc18e.zip
Commented out some (debugging?) code which was ...
Commented out some (debugging?) code which was breaking the build.
Diffstat (limited to 'src')
-rw-r--r--src/compiler/scala/tools/nsc/symtab/Types.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/scala/tools/nsc/symtab/Types.scala b/src/compiler/scala/tools/nsc/symtab/Types.scala
index b411893703..c9aab59ff5 100644
--- a/src/compiler/scala/tools/nsc/symtab/Types.scala
+++ b/src/compiler/scala/tools/nsc/symtab/Types.scala
@@ -504,13 +504,13 @@ trait Types {
/** The info of `sym', seen as a member of this type.
*/
def memberInfo(sym: Symbol): Type = {
- incCounter(ctr1)
+ // incCounter(ctr1)
sym.info.asSeenFrom(this, sym.owner)
}
/** The type of `sym', seen as a member of this type. */
def memberType(sym: Symbol): Type = {
- incCounter(ctr2)
+ // incCounter(ctr2)
//@M don't prematurely instantiate higher-kinded types, they will be instantiated by transform, typedTypeApply, etc. when really necessary
sym.tpeHK match {
case ov @ OverloadedType(pre, alts) =>