We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3cff92 commit 55b9ac1Copy full SHA for 55b9ac1
compiler/src/dotty/tools/dotc/interactive/InteractiveDriver.scala
@@ -117,7 +117,6 @@ class InteractiveDriver(settings: List[String]) extends Driver {
117
118
// Like in `ZipArchiveFileLookup` we assume that zips are immutable
119
private val zipClassPathClasses: Seq[String] = zipClassPaths.flatMap { zipCp =>
120
- // (new ZipFile(zipCp.asInstanceOf[ZipArchiveFileLookup[_]].zipFile).stream.collect(Collectors.toList()).asScala: List[ZipEntry])
121
// Working with Java 8 stream without SAMs and scala-java8-compat is awful.
122
val entries = new ZipFile(zipCp.zipFile)
123
.stream
0 commit comments