Skip to content

Commit baa1c94

Browse files
committed
Update scalafmt to 3.10.5
1 parent bd10186 commit baa1c94

File tree

5 files changed

+43
-6
lines changed

5 files changed

+43
-6
lines changed

.scalafmt.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# - better interop with default IntelliJ IDEA setup (matching import and modifiers sorting logic)
44
# - better developer experience on laptop screens (like 16' MBPs) with IntelliJ IDEA (line wraps)
55

6-
version = 3.10.4
6+
version = 3.10.5
77

88
runner.dialect = scala213source3
99
fileOverride {

distributed-data/src/main/scala/com/evolution/pekko/cluster/ddata/SafeReplicator.scala

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,22 @@ import com.evolutiongaming.smetrics.MetricsHelper.*
1010
import org.apache.pekko.actor.{Actor, ActorLogging, ActorRef, ActorRefFactory, ActorSystem, Props}
1111
import org.apache.pekko.cluster.ddata.Replicator.{ReadConsistency, WriteConsistency}
1212
import org.apache.pekko.cluster.ddata.{
13-
DistributedData, Flag, GCounter, GSet, Key, LWWMap, ManyVersionVector, ORMap, ORMultiMap, ORSet, OneVersionVector,
14-
PNCounter, PNCounterMap, ReplicatedData, Replicator as R, VersionVector,
13+
DistributedData,
14+
Flag,
15+
GCounter,
16+
GSet,
17+
Key,
18+
LWWMap,
19+
ManyVersionVector,
20+
ORMap,
21+
ORMultiMap,
22+
ORSet,
23+
OneVersionVector,
24+
PNCounter,
25+
PNCounterMap,
26+
ReplicatedData,
27+
Replicator as R,
28+
VersionVector,
1529
}
1630
import org.apache.pekko.pattern.ask
1731
import org.apache.pekko.util.Timeout

effect-actor-tests/src/test/scala/com/evolution/pekko/effect/actor/tests/ActorOfTest.scala

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,17 @@ import cats.effect.unsafe.implicits.global
66
import cats.syntax.all.*
77
import com.evolution.pekko.effect.actor.IOSuite.*
88
import com.evolution.pekko.effect.actor.{
9-
Act, ActorCtx, ActorEffect, ActorOf, ActorRefOf, Ask, Call, Envelope, Receive, ReceiveOf, Tell,
9+
Act,
10+
ActorCtx,
11+
ActorEffect,
12+
ActorOf,
13+
ActorRefOf,
14+
Ask,
15+
Call,
16+
Envelope,
17+
Receive,
18+
ReceiveOf,
19+
Tell,
1020
}
1121
import com.evolution.pekko.effect.testkit.Probe
1222
import com.evolutiongaming.catshelper.CatsHelper.*

pubsub/src/main/scala/org/apache/pekko/cluster/pubsub/DistributedPubSubMediatorSerializing.scala

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,14 @@ import com.evolution.pekko.cluster.pubsub.{PubSub, PubSubMsg}
55
import com.evolution.pekko.serialization.{SerializedMsg, SerializedMsgExt}
66
import org.apache.pekko.Done
77
import org.apache.pekko.actor.{
8-
Actor, ActorLogging, ActorRef, ActorSystem, DeadLetter, Deploy, ExtendedActorSystem, Props,
8+
Actor,
9+
ActorLogging,
10+
ActorRef,
11+
ActorSystem,
12+
DeadLetter,
13+
Deploy,
14+
ExtendedActorSystem,
15+
Props,
916
}
1017
import org.apache.pekko.cluster.Cluster
1118
import org.apache.pekko.cluster.pubsub.DistributedPubSubMediator.Internal.Topic

sharding-strategy/src/main/scala/com/evolution/pekko/cluster/sharding/MappedStrategy.scala

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@ import cats.{FlatMap, Parallel, ~>}
77
import com.evolution.pekko.cluster.ddata.SafeReplicator
88
import com.evolutiongaming.catshelper.{FromFuture, ToFuture}
99
import org.apache.pekko.actor.{
10-
ActorRef, ActorRefFactory, ActorSystem, Address, ExtendedActorSystem, Extension, ExtensionId,
10+
ActorRef,
11+
ActorRefFactory,
12+
ActorSystem,
13+
Address,
14+
ExtendedActorSystem,
15+
Extension,
16+
ExtensionId,
1117
}
1218
import org.apache.pekko.cluster.ddata.*
1319
import org.apache.pekko.cluster.ddata.Replicator.{ReadConsistency, ReadLocal, WriteConsistency, WriteLocal}

0 commit comments

Comments
 (0)