We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 274d25c commit a8624adCopy full SHA for a8624ad
shared/src/main/scala/com/comcast/ip4s/SocketAddress.scala
@@ -21,7 +21,7 @@ import cats.syntax.all._
21
22
/** An IP address of the specified type and a port number. Used to describe the source or destination of a socket.
23
*/
24
-final case class SocketAddress[+A <: Host](host: A, port: Port) extends SocketAddressPlatform[A] with GenSocketAddress {
+final case class SocketAddress[+A <: Host](host: A, port: Port) extends GenSocketAddress with SocketAddressPlatform[A] {
25
override def toString: String =
26
host match {
27
case _: Ipv6Address => s"[$host]:$port"
0 commit comments