=all remove unused imports

This commit is contained in:
Johannes Rudolph 2016-02-22 20:18:15 +01:00 committed by Konrad Malawski
parent 4fcf08e7e8
commit b6cbc7f13a
423 changed files with 488 additions and 1223 deletions

View file

@ -28,7 +28,6 @@ private[akka] object AllPersistenceIdsPublisher {
*/
private[akka] class AllPersistenceIdsPublisher(liveQuery: Boolean, maxBufSize: Int, writeJournalPluginId: String)
extends ActorPublisher[String] with DeliveryBuffer[String] with ActorLogging {
import AllPersistenceIdsPublisher._
val journal: ActorRef = Persistence(context.system).journalFor(writeJournalPluginId)

View file

@ -5,8 +5,6 @@ package akka.persistence.query.journal.leveldb.javadsl
import akka.NotUsed
import scala.concurrent.duration._
import akka.persistence.query.EventEnvelope
import akka.persistence.query.javadsl._
import akka.stream.javadsl.Source

View file

@ -7,7 +7,6 @@ package akka.persistence.query
import akka.NotUsed
import akka.stream.scaladsl.Source
import com.typesafe.config.{ Config, ConfigFactory }
import scala.runtime.BoxedUnit
/**
* Use for tests only!

View file

@ -24,7 +24,6 @@ object AllPersistenceIdsSpec {
class AllPersistenceIdsSpec extends AkkaSpec(AllPersistenceIdsSpec.config)
with Cleanup with ImplicitSender {
import AllPersistenceIdsSpec._
implicit val mat = ActorMaterializer()(system)

View file

@ -26,7 +26,6 @@ object EventsByPersistenceIdSpec {
class EventsByPersistenceIdSpec extends AkkaSpec(EventsByPersistenceIdSpec.config)
with Cleanup with ImplicitSender {
import EventsByPersistenceIdSpec._
implicit val mat = ActorMaterializer()(system)

View file

@ -50,7 +50,6 @@ class ColorTagger extends WriteEventAdapter {
class EventsByTagSpec extends AkkaSpec(EventsByTagSpec.config)
with Cleanup with ImplicitSender {
import EventsByTagSpec._
implicit val mat = ActorMaterializer()(system)