From 20e92aa7952d49aee15f093d578758be594f00c5 Mon Sep 17 00:00:00 2001 From: Gabriel Volpe Date: Mon, 4 May 2020 12:25:01 +0200 Subject: [PATCH] making it final --- .../core/src/main/scala/dev/profunktor/redis4cats/hlist.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/src/main/scala/dev/profunktor/redis4cats/hlist.scala b/modules/core/src/main/scala/dev/profunktor/redis4cats/hlist.scala index fe59e422..2dae94b8 100644 --- a/modules/core/src/main/scala/dev/profunktor/redis4cats/hlist.scala +++ b/modules/core/src/main/scala/dev/profunktor/redis4cats/hlist.scala @@ -42,7 +42,7 @@ object hlist { } } - case class HCons[+H, +Tail <: HList](head: H, tail: Tail) extends HList + final case class HCons[+H, +Tail <: HList](head: H, tail: Tail) extends HList case object HNil extends HList /**