Skip to content

Commit

Permalink
Merge pull request #363 from xuwei-k/for-case
Browse files Browse the repository at this point in the history
  • Loading branch information
eed3si9n authored Dec 26, 2023
2 parents 3212880 + 891862c commit be7a2e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io/src/main/scala/sbt/io/IO.scala
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ object IO {
isEmpty.getOrElseUpdate(f, dirs(f) && f.isDirectory && (f.listFiles forall visit))

dirs foreach visit
for ((f, true) <- isEmpty) f.delete
for (case (f, true) <- isEmpty) f.delete
}

/** Deletes each file or directory (recursively) in `files`. */
Expand Down

0 comments on commit be7a2e3

Please sign in to comment.