Remove unused imports
This commit is contained in:
parent
29c3041e04
commit
4ddbc4874d
17 changed files with 8 additions and 21 deletions
|
|
@ -13,7 +13,7 @@ import scala.annotation.tailrec
|
|||
import scala.concurrent.Promise
|
||||
import scala.concurrent.duration.FiniteDuration
|
||||
import akka.actor._
|
||||
import akka.stream.{ ActorAttributes, Materializer }
|
||||
import akka.stream.Materializer
|
||||
import akka.stream.actor.{ ActorPublisher, ActorSubscriber, ZeroRequestStrategy }
|
||||
import akka.stream.actor.ActorPublisherMessage._
|
||||
import akka.stream.actor.ActorSubscriberMessage._
|
||||
|
|
@ -21,7 +21,7 @@ import akka.stream.impl.{ SeqActorName, FixedSizeBuffer }
|
|||
import akka.stream.scaladsl.{ Keep, Flow, Sink, Source }
|
||||
import akka.http.impl.settings.HostConnectionPoolSetup
|
||||
import akka.http.scaladsl.model._
|
||||
import akka.http.scaladsl.{ ConnectionContext, HttpsConnectionContext, Http }
|
||||
import akka.http.scaladsl.{ HttpsConnectionContext, Http }
|
||||
import PoolFlow._
|
||||
|
||||
private object PoolInterfaceActor {
|
||||
|
|
|
|||
|
|
@ -8,7 +8,6 @@ import java.net.InetSocketAddress
|
|||
|
||||
import akka.actor._
|
||||
import akka.http.scaladsl.settings.ConnectionPoolSettings
|
||||
import akka.http.impl.util._
|
||||
import akka.http.scaladsl.model.{ HttpEntity, HttpRequest, HttpResponse }
|
||||
import akka.stream._
|
||||
import akka.stream.actor._
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ import akka.NotUsed
|
|||
import scala.annotation.tailrec
|
||||
import akka.event.LoggingAdapter
|
||||
import akka.parboiled2.CharPredicate
|
||||
import akka.stream.scaladsl.{ Sink, Source }
|
||||
import akka.stream.scaladsl.Source
|
||||
import akka.stream.stage._
|
||||
import akka.util.ByteString
|
||||
import akka.http.scaladsl.model._
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ package akka.http.impl.engine.parsing
|
|||
|
||||
import javax.net.ssl.SSLSession
|
||||
|
||||
import akka.stream.io.{ SessionBytes, SslTlsInbound }
|
||||
import akka.stream.io.SessionBytes
|
||||
|
||||
import scala.annotation.tailrec
|
||||
import scala.collection.mutable.ListBuffer
|
||||
|
|
|
|||
|
|
@ -6,8 +6,7 @@ package akka.http.impl.engine.parsing
|
|||
|
||||
import akka.NotUsed
|
||||
import akka.http.scaladsl.model._
|
||||
import akka.stream.impl.fusing.GraphInterpreter
|
||||
import akka.stream.scaladsl.{ Sink, Source }
|
||||
import akka.stream.scaladsl.Source
|
||||
import akka.util.ByteString
|
||||
import akka.stream.impl.fusing.SubSource
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,6 @@ import scala.annotation.tailrec
|
|||
import akka.event.LoggingAdapter
|
||||
import akka.util.ByteString
|
||||
import akka.stream.scaladsl.Source
|
||||
import akka.stream.stage._
|
||||
import akka.http.scaladsl.model._
|
||||
import akka.http.impl.util._
|
||||
import RenderSupport._
|
||||
|
|
|
|||
|
|
@ -12,7 +12,6 @@ import akka.stream.scaladsl._
|
|||
import akka.stream.stage._
|
||||
import akka.http.scaladsl.model._
|
||||
import akka.http.impl.util._
|
||||
import org.reactivestreams.Subscriber
|
||||
import akka.http.scaladsl.model.HttpEntity.ChunkStreamPart
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ import akka.stream.{ Graph, FlowShape, javadsl, scaladsl }
|
|||
|
||||
import scala.collection.immutable
|
||||
import scala.reflect.ClassTag
|
||||
import akka.{ NotUsed, japi }
|
||||
import akka.NotUsed
|
||||
import akka.http.impl.model.{ JavaQuery, JavaUri }
|
||||
import akka.http.javadsl.{ model ⇒ jm, HttpConnectionContext, ConnectionContext, HttpsConnectionContext }
|
||||
import akka.http.scaladsl.{ model ⇒ sm }
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@ import akka.stream.stage._
|
|||
import akka.util.ByteString
|
||||
import org.reactivestreams.{ Processor, Publisher, Subscriber, Subscription }
|
||||
|
||||
import scala.collection.immutable
|
||||
import scala.concurrent.{ ExecutionContext, Future, Promise }
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ package akka.http.javadsl.model.ws
|
|||
import java.lang.{ Iterable ⇒ JIterable }
|
||||
import akka.http.scaladsl.{ model ⇒ sm }
|
||||
import akka.http.javadsl.model._
|
||||
import akka.stream.Materializer
|
||||
|
||||
import akka.stream._
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -11,7 +11,6 @@ import java.{ util ⇒ ju }
|
|||
import akka.http.impl.util.JavaMapping.Implicits._
|
||||
import scala.annotation.varargs
|
||||
import scala.collection.JavaConverters._
|
||||
import scala.compat.java8.OptionConverters
|
||||
|
||||
import akka.http.javadsl.model.{ HttpMethod, StatusCode, Uri }
|
||||
import com.typesafe.config.Config
|
||||
|
|
|
|||
|
|
@ -10,7 +10,6 @@ import javax.net.ssl._
|
|||
|
||||
import akka.actor._
|
||||
import akka.event.{ Logging, LoggingAdapter }
|
||||
import akka.http._
|
||||
import akka.http.impl.engine.HttpConnectionTimeoutException
|
||||
import akka.http.impl.engine.client._
|
||||
import akka.http.impl.engine.server._
|
||||
|
|
|
|||
|
|
@ -8,7 +8,6 @@ import java.util.{ OptionalLong, Optional }
|
|||
import java.{ lang ⇒ jl }
|
||||
import akka.http.impl.util.{ Rendering, ValueRenderable }
|
||||
import akka.http.javadsl.{ model ⇒ jm }
|
||||
import akka.http.impl.util.JavaMapping.Implicits._
|
||||
import scala.compat.java8.OptionConverters._
|
||||
|
||||
sealed trait ContentRange extends jm.ContentRange with ValueRenderable {
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@ package akka.http.scaladsl.model
|
|||
import java.io.File
|
||||
import java.util.Optional
|
||||
import akka.http.impl.util.Util
|
||||
import scala.collection.immutable.VectorBuilder
|
||||
import scala.concurrent.duration.FiniteDuration
|
||||
import scala.concurrent.Future
|
||||
import scala.collection.immutable
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@ import java.lang.Iterable
|
|||
import java.util.{ Optional, Random }
|
||||
import java.util.function.Supplier
|
||||
|
||||
import akka.actor.ActorSystem
|
||||
import akka.http.impl.settings.ClientConnectionSettingsImpl
|
||||
import akka.http.javadsl.model.headers.UserAgent
|
||||
import akka.http.javadsl.{ settings ⇒ js }
|
||||
|
|
|
|||
|
|
@ -9,13 +9,10 @@ import java.util.function.Function
|
|||
|
||||
import akka.http.impl.settings.ParserSettingsImpl
|
||||
import akka.http.impl.util._
|
||||
import akka.http.scaladsl.model.HttpMethod
|
||||
import akka.http.scaladsl.model.StatusCode
|
||||
import akka.http.scaladsl.model.{ HttpMethod, StatusCode, Uri }
|
||||
import akka.http.scaladsl.{ settings ⇒ js }
|
||||
import com.typesafe.config.Config
|
||||
|
||||
import scala.annotation.varargs
|
||||
import scala.collection.JavaConverters._
|
||||
import scala.compat.java8.OptionConverters
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ import java.util.function.Supplier
|
|||
|
||||
import akka.http.impl.settings.ServerSettingsImpl
|
||||
import akka.http.impl.util.JavaMapping.Implicits._
|
||||
import akka.http.javadsl.{ model ⇒ jm, settings ⇒ js }
|
||||
import akka.http.javadsl.{ settings ⇒ js }
|
||||
import akka.http.scaladsl.model.headers.Host
|
||||
import akka.http.scaladsl.model.headers.Server
|
||||
import akka.io.Inet.SocketOption
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue