Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Close classpath directory after listing #552

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,12 @@ private[mima] object ClassPath {
private def javaBootCp = expandCp(System.getProperty("sun.boot.class.path", ""))

import scala.collection.JavaConverters._
private def list(p: Path) = Files.newDirectoryStream(p).asScala.toStream.sortBy(_.toString)
private def list(p: Path) = {
val stream = Files.newDirectoryStream(p)
val list = stream.asScala.toStream.sortBy(_.toString)
stream.close()
list
}
private def listDir(p: Path) = if (Files.isDirectory(p)) list(p) else Stream.empty
private def readLink(p: Path) = if (Files.isSymbolicLink(p)) Files.readSymbolicLink(p) else p
private def rootPath(p: Path) = FileSystems.newFileSystem(p, null).getPath("/")
Expand Down