Skip to content

Commit

Permalink
remove scala-collection-compat (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning authored Jun 27, 2023
1 parent babdfdc commit 4dff4bf
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
1 change: 0 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ libraryDependencies ++= Seq(
"org.apache.pekko" %% "pekko-persistence" % pekkoVersion,
"org.apache.pekko" %% "pekko-persistence-query" % pekkoVersion,
"org.apache.pekko" %% "pekko-stream" % pekkoVersion,
"org.scala-lang.modules" %% "scala-collection-compat" % "2.6.0",
"org.apache.pekko" %% "pekko-persistence-tck" % pekkoVersion % "test",
"org.apache.pekko" %% "pekko-testkit" % pekkoVersion % "test",
"org.apache.pekko" %% "pekko-stream-testkit" % pekkoVersion % "test",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,23 @@

package org.apache.pekko.persistence.dynamodb.journal

import org.apache.pekko.NotUsed
import org.apache.pekko.actor.ExtendedActorSystem
import org.apache.pekko.dispatch.MessageDispatcher
import org.apache.pekko.persistence.PersistentRepr
import org.apache.pekko.persistence.dynamodb._
import org.apache.pekko.serialization.{ AsyncSerializer, Serialization }
import org.apache.pekko.stream._
import org.apache.pekko.stream.scaladsl._
import org.apache.pekko.stream.stage._
import org.apache.pekko
import pekko.NotUsed
import pekko.actor.ExtendedActorSystem
import pekko.dispatch.MessageDispatcher
import pekko.persistence.PersistentRepr
import pekko.persistence.dynamodb._
import pekko.serialization.{ AsyncSerializer, Serialization }
import pekko.stream._
import pekko.stream.scaladsl._
import pekko.stream.stage._
import pekko.util.ccompat.JavaConverters._
import com.amazonaws.services.dynamodbv2.model._

import java.util.function.Consumer
import java.util.{ ArrayList, Collections, Map => JMap }
import scala.collection.immutable
import scala.concurrent.Future
import scala.jdk.CollectionConverters._

object DynamoDBRecovery {
val ItemAttributesForReplay: Seq[String] = Seq(
Expand Down

0 comments on commit 4dff4bf

Please sign in to comment.