From ee39cd3885a86af38f2b6af62a1fc3d8c907e3f1 Mon Sep 17 00:00:00 2001 From: Tushar Mathur Date: Wed, 9 Feb 2022 08:05:20 +0530 Subject: [PATCH] refactor: remove sealed modifier from Middleware trait --- zio-http/src/main/scala/zhttp/http/Middleware.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zio-http/src/main/scala/zhttp/http/Middleware.scala b/zio-http/src/main/scala/zhttp/http/Middleware.scala index c6364f020b..32ab14bc6c 100644 --- a/zio-http/src/main/scala/zhttp/http/Middleware.scala +++ b/zio-http/src/main/scala/zhttp/http/Middleware.scala @@ -20,7 +20,7 @@ import zio.{UIO, ZIO} * The `AOut` and `BOut` type params represent the type params of the output * Http. */ -sealed trait Middleware[-R, +E, +AIn, -BIn, -AOut, +BOut] { self => +trait Middleware[-R, +E, +AIn, -BIn, -AOut, +BOut] { self => /** * Creates a new middleware that passes the output Http of the current