summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/Global.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-02-23 18:15:37 +0000
committerPaul Phillips <paulp@improving.org>2010-02-23 18:15:37 +0000
commit152d22dbd031c8a97bcb941eae64b282bc036d0c (patch)
treed1dc709665c911220790e8a82a96589df711fabd /src/compiler/scala/tools/nsc/Global.scala
parentea09870b1c526a4b5e6e01f79a946353e406dbf9 (diff)
downloadscala-152d22dbd031c8a97bcb941eae64b282bc036d0c.tar.gz
scala-152d22dbd031c8a97bcb941eae64b282bc036d0c.tar.bz2
scala-152d22dbd031c8a97bcb941eae64b282bc036d0c.zip
After the compiler refactor, we ended up with i...
After the compiler refactor, we ended up with identical copies of PickleBuffer and PickleFormat in the library and compiler. Deleted the compiler versions and updated references. No review.
Diffstat (limited to 'src/compiler/scala/tools/nsc/Global.scala')
-rw-r--r--src/compiler/scala/tools/nsc/Global.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/Global.scala b/src/compiler/scala/tools/nsc/Global.scala
index a6b32abef3..0590797e53 100644
--- a/src/compiler/scala/tools/nsc/Global.scala
+++ b/src/compiler/scala/tools/nsc/Global.scala
@@ -14,9 +14,10 @@ import io.{ SourceReader, AbstractFile, Path }
import reporters.{ Reporter, ConsoleReporter }
import util.{ ClassPath, SourceFile, Statistics, BatchSourceFile }
import collection.mutable.{ HashSet, HashMap, ListBuffer }
+import reflect.generic.{ PickleBuffer }
import symtab.{ Flags, SymbolTable, SymbolLoaders }
-import symtab.classfile.{PickleBuffer, Pickler}
+import symtab.classfile.Pickler
import dependencies.DependencyAnalysis
import plugins.Plugins
import ast._