Skip to content

Commit

Permalink
Merge pull request #189 from lhns/update/scalafmt-core-3.8.5
Browse files Browse the repository at this point in the history
Update scalafmt-core to 3.8.5
  • Loading branch information
lhns authored Jan 22, 2025
2 parents 016f5c1 + 093d124 commit c85e781
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# Scala Steward: Reformat with scalafmt 3.8.1
1da8c231ab19218314dd97bbf0baa16fa4e003fe

# Scala Steward: Reformat with scalafmt 3.8.5
e044ee2e09893ae6759e01897d8c2e6b3e74ad44
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.8.3"
version = "3.8.5"
project.git = true
runner.dialect = scala213
maxColumn = 120
Expand Down
3 changes: 2 additions & 1 deletion zip4j/src/main/scala/de/lhns/fs2/compress/Zip4J.scala
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,8 @@ class Zip4JUnarchiver[F[_]: Async] private (chunkSize: Int) extends Unarchiver[F
.resource(
Resource.make(
Async[F].blocking(Option(zipInputStream.getNextEntry))
)(_ => Async[F].unit // .blocking(zipInputStream.closeEntry())
)(_ =>
Async[F].unit // .blocking(zipInputStream.closeEntry())
)
)
.flatMap(Stream.fromOption[F](_))
Expand Down

0 comments on commit c85e781

Please sign in to comment.