Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update scalafmt-core to 3.8.4 #363

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Scala Steward: Reformat with scalafmt 3.8.4
30cfcad34fb3aa00c15989eca37ab32b9f418038
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.4

maxColumn = 120

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ object Engine {
/** Execute `load` with respect to:
* 1. failure on `load` or `validate` will be propagated to user 2. stopped Engine will not persist any events
* or change its state 3. `load` stages executed unordered and in parallel 4. `validate` stages executed
* strictly sequentially 5. `persist` happened strictly sequentially 6. `effect`s executed strictly
* strictly sequentially 5. `persist` happened strictly sequentially 6. `effect` s executed strictly
* sequentially
*
* Please check [[EngineCatsEffectTest]] for more restrictions of the implementation
Expand Down Expand Up @@ -466,12 +466,10 @@ object Engine {
Ref[F]
.of(initial)
.map { seqNrRef => events =>
{
val size = events.size
seqNrRef.modify { seqNr =>
val seqNr1 = seqNr + size
(seqNr1, seqNr1)
}
val size = events.size
seqNrRef.modify { seqNr =>
val seqNr1 = seqNr + size
(seqNr1, seqNr1)
}
}

Expand Down
Loading