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 16ce7e4 commit a45f57bCopy full SHA for a45f57b
compiler/src/dotty/tools/dotc/interactive/InteractiveDriver.scala
@@ -132,7 +132,7 @@ class InteractiveDriver(val settings: List[String]) extends Driver {
132
133
try {
134
for {
135
- entry <- zipFile.stream.iterator().asScala
+ entry <- zipFile.stream.toArray((size: Int) => new Array[ZipEntry](size))
136
name = entry.getName
137
tastySuffix <- tastySuffixes
138
if name.endsWith(tastySuffix)
0 commit comments