summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2009-12-16 15:30:29 +0000
committerPaul Phillips <paulp@improving.org>2009-12-16 15:30:29 +0000
commit5330b36a5b0e9463f2d538991fa520abaecff6f2 (patch)
tree538a4fdf112299f6504460ed7487085ae853412d
parent1c5db35b3ae9600bbe780b4139c35bd8427178f1 (diff)
downloadscala-5330b36a5b0e9463f2d538991fa520abaecff6f2.tar.gz
scala-5330b36a5b0e9463f2d538991fa520abaecff6f2.tar.bz2
scala-5330b36a5b0e9463f2d538991fa520abaecff6f2.zip
Removed an inapplicable comment with no review.
-rw-r--r--src/compiler/scala/tools/nsc/symtab/SymbolLoaders.scala9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/compiler/scala/tools/nsc/symtab/SymbolLoaders.scala b/src/compiler/scala/tools/nsc/symtab/SymbolLoaders.scala
index 97a11acf99..7e4693c7a1 100644
--- a/src/compiler/scala/tools/nsc/symtab/SymbolLoaders.scala
+++ b/src/compiler/scala/tools/nsc/symtab/SymbolLoaders.scala
@@ -236,15 +236,6 @@ abstract class SymbolLoaders {
}
class ClassfileLoader(val classfile: AbstractFile) extends SymbolLoader {
-
- /**
- * @FIXME: iulian,
- * there should not be a new ClassfileParser for every loaded classfile, this object
- * should be outside the class ClassfileLoader! This was changed by Sean in r5494.
- *
- * However, when pulling it out, loading "java.lang.Object" breaks with:
- * "illegal class file dependency between java.lang.Object and java.lang.Class"
- */
private object classfileParser extends ClassfileParser {
val global: SymbolLoaders.this.global.type = SymbolLoaders.this.global
}