Skip to content

Commit

Permalink
order of imports
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning authored Oct 24, 2024
1 parent f755008 commit 569ccfd
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,22 @@

package org.apache.pekko.http.impl.engine.http2

import com.typesafe.config.ConfigFactory
import java.time.format.DateTimeFormatter

import com.typesafe.config.ConfigFactory
import org.apache.pekko
import pekko.event.NoLogging
import pekko.http.impl.engine.rendering.DateHeaderRendering
import pekko.http.scaladsl.model.headers._
import pekko.http.scaladsl.model._
import pekko.http.scaladsl.settings.{ ClientConnectionSettings, ServerSettings }
import scala.collection.immutable.VectorBuilder
import scala.util.Try
import org.scalatest.matchers.should.Matchers
import org.scalatest.wordspec.AnyWordSpec

import scala.collection.immutable.VectorBuilder
import scala.collection.immutable.Seq
import scala.collection.immutable
import scala.util.Try

object MyCustomHeader extends ModeledCustomHeaderCompanion[MyCustomHeader] {
override def name: String = "custom-header"
Expand Down

0 comments on commit 569ccfd

Please sign in to comment.