This is an automated email from the ASF dual-hosted git repository.
fanningpj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pekko.git
The following commit(s) were added to refs/heads/main by this push:
new b85f2391d3 Update scalafmt-core to 3.10.6 (#2649)
b85f2391d3 is described below
commit b85f2391d38ad7616cbe324708632f1df598f0a2
Author: Scala Steward <[email protected]>
AuthorDate: Sat Jan 31 20:34:19 2026 +0100
Update scalafmt-core to 3.10.6 (#2649)
* Update scalafmt-core to 3.10.6
* Reformat with scalafmt 3.10.6
Executed command: scalafmt --non-interactive
* Add 'Reformat with scalafmt 3.10.6' to .git-blame-ignore-revs
---
.git-blame-ignore-revs | 3 +++
.scalafmt.conf | 2 +-
.../src/test/scala/org/apache/pekko/event/LoggingReceiveSpec.scala | 2 +-
docs/src/test/scala/docs/cluster/FactorialBackend.scala | 2 +-
4 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs
index d3e5508984..457ba53dff 100644
--- a/.git-blame-ignore-revs
+++ b/.git-blame-ignore-revs
@@ -104,3 +104,6 @@ f48453e60a8d11f74acc7a10d3a9da90b8acd4af
# Scala Steward: Reformat with scalafmt 3.10.4
7f8a3cb127ad110bfe4bcd1439847d648e2c00c7
3e48d13f67e04711cd8183d855be9c5f7052281b
+
+# Scala Steward: Reformat with scalafmt 3.10.6
+b733294bb7213713b756376fe696acc7266dd9ec
diff --git a/.scalafmt.conf b/.scalafmt.conf
index 6c028c636a..a6aa41cde5 100644
--- a/.scalafmt.conf
+++ b/.scalafmt.conf
@@ -1,4 +1,4 @@
-version = 3.10.5
+version = 3.10.6
runner.dialect = scala213
project.git = true
style = defaultWithAlign
diff --git
a/actor-tests/src/test/scala/org/apache/pekko/event/LoggingReceiveSpec.scala
b/actor-tests/src/test/scala/org/apache/pekko/event/LoggingReceiveSpec.scala
index 1501059dbd..febe6ea108 100644
--- a/actor-tests/src/test/scala/org/apache/pekko/event/LoggingReceiveSpec.scala
+++ b/actor-tests/src/test/scala/org/apache/pekko/event/LoggingReceiveSpec.scala
@@ -60,7 +60,7 @@ class LoggingReceiveSpec extends AnyWordSpec with
BeforeAndAfterAll {
def ignoreMute(t: TestKit): Unit = {
t.ignoreMsg {
- case (_: TestEvent.Mute | _: TestEvent.UnMute) => true
+ case _: TestEvent.Mute | _: TestEvent.UnMute => true
}
}
diff --git a/docs/src/test/scala/docs/cluster/FactorialBackend.scala
b/docs/src/test/scala/docs/cluster/FactorialBackend.scala
index 495a583ae7..26f2966813 100644
--- a/docs/src/test/scala/docs/cluster/FactorialBackend.scala
+++ b/docs/src/test/scala/docs/cluster/FactorialBackend.scala
@@ -28,7 +28,7 @@ class FactorialBackend extends Actor with ActorLogging {
import context.dispatcher
def receive = {
- case (n: Int) =>
+ case n: Int =>
Future(factorial(n))
.map { result =>
(n, result)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]