Skip to content

Commit

Permalink
prepare dotty
Browse files Browse the repository at this point in the history
(cherry picked from commit 9079bbc)
  • Loading branch information
xuwei-k committed Oct 6, 2020
1 parent 8b56347 commit 1868731
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared/src/main/scala/org/atnos/eff/WriterEffect.scala
Expand Up @@ -61,7 +61,7 @@ trait WriterInterpretation {

def onApplicativeEffect[X, T[_] : Traverse](xs: T[Writer[O, X]], continuation: Continuation[U, T[X], (A, fold.S)]): Eff[U, (A, fold.S)] = {
val os = new collection.mutable.ListBuffer[O]
val values = xs.map { w: Writer[O, X] =>
val values = xs.map { w =>
val (o, x) = w.run
os.append(o)
x
Expand Down

0 comments on commit 1868731

Please sign in to comment.