~wegtam/smederee

Showing details for patch e4f5c92b49a2ac504c58f26807ffd00784edd16e.
2024-08-02 (Fri), 6:46 AM - Jens Grassel - e4f5c92b49a2ac504c58f26807ffd00784edd16e

Update scalafmt to 3.8.3

Summary of changes
2 files modified with 7 lines added and 4 lines removed
  • .scalafmt.conf with 1 added and 1 removed lines
  • modules/hub/src/test/scala/de/smederee/hub/DoobieVcsMetadataRepositoryTest.scala with 6 added and 3 removed lines
diff -rN -u old-smederee/modules/hub/src/test/scala/de/smederee/hub/DoobieVcsMetadataRepositoryTest.scala new-smederee/modules/hub/src/test/scala/de/smederee/hub/DoobieVcsMetadataRepositoryTest.scala
--- old-smederee/modules/hub/src/test/scala/de/smederee/hub/DoobieVcsMetadataRepositoryTest.scala	2024-11-23 09:16:40.136723017 +0000
+++ new-smederee/modules/hub/src/test/scala/de/smederee/hub/DoobieVcsMetadataRepositoryTest.scala	2024-11-23 09:16:40.136723017 +0000
@@ -46,9 +46,12 @@
                 forks <- IO.delay {
                     var queue = Queue.empty[(VcsRepositoryId, VcsRepositoryId)]
                     while (result.next())
-                        queue = queue :+ (VcsRepositoryId(result.getLong("original_repo")), VcsRepositoryId(
-                            result.getLong("forked_repo")
-                        ))
+                        queue = queue :+ (
+                            VcsRepositoryId(result.getLong("original_repo")),
+                            VcsRepositoryId(
+                                result.getLong("forked_repo")
+                            )
+                        )
                     queue
                 }
                 _ <- IO.delay(statement.close())
diff -rN -u old-smederee/.scalafmt.conf new-smederee/.scalafmt.conf
--- old-smederee/.scalafmt.conf	2024-11-23 09:16:40.136723017 +0000
+++ new-smederee/.scalafmt.conf	2024-11-23 09:16:40.136723017 +0000
@@ -1,4 +1,4 @@
-version        = "3.8.1"
+version        = "3.8.3"
 runner.dialect = scala3
 style          = "defaultWithAlign"
 # Other options...