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 72e7bce commit 9d89076Copy full SHA for 9d89076
compiler/src/dotty/tools/io/ZipArchive.scala
@@ -68,7 +68,8 @@ abstract class ZipArchive(override val file: JFile) extends AbstractFile with Eq
68
def absolute = unsupported()
69
70
/** ''Note: This library is considered experimental and should not be used unless you know what you are doing.'' */
71
- sealed abstract class Entry(path: String) extends VirtualFile(baseName(path), path) {
+ // FIXME: `private[tools]` should be `sealed` once #2391 is fixed
72
+ private[tools] abstract class Entry(path: String) extends VirtualFile(baseName(path), path) {
73
// have to keep this name for compat with sbt's compiler-interface
74
def getArchive: ZipFile = null
75
override def underlyingSource = Some(self)
0 commit comments