summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-06-11 10:17:49 +0000
committerPaul Phillips <paulp@improving.org>2011-06-11 10:17:49 +0000
commitd73d4950c99dcd383408bfa6502bce592517825a (patch)
tree740eb497d6b1b40bfb24b707c7a1f5ebd651f720 /src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala
parentc8f4316b374d78caaf5ba605cd34e323b78a77de (diff)
downloadscala-d73d4950c99dcd383408bfa6502bce592517825a.tar.gz
scala-d73d4950c99dcd383408bfa6502bce592517825a.tar.bz2
scala-d73d4950c99dcd383408bfa6502bce592517825a.zip
Making some recent changes less breaky so sbt c...
Making some recent changes less breaky so sbt can be used with trunk again. Mainly, renamed scala.reflect.internal's AbstractFile to AbstractFileType. I can't see a way around renaming it and it's becoming quite a problem not to have sbt. I inspected scala-ide and I don't think this is going to break it, but in general I don't know how plausible it is that we can avoid periodic breakage given that we have at least three source bases (scala, sbt, scala-ide) each with multiple branches with interdependencies which are not being continuously integrated. Review by odersky.
Diffstat (limited to 'src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala')
-rw-r--r--src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala b/src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala
index 126dd2c2da..a539d48150 100644
--- a/src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala
+++ b/src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala
@@ -14,6 +14,7 @@ import scala.collection.{ mutable, immutable }
import scala.collection.mutable.{ ListBuffer, ArrayBuffer }
import scala.annotation.switch
import scala.reflect.internal.pickling.{PickleBuffer, ByteCodecs}
+import scala.tools.nsc.io.AbstractFile
/** This abstract class implements a class file parser.
*