Skip to content

Commit

Permalink
refactor: update type params for debug
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharmath committed Dec 9, 2022
1 parent cf6e522 commit 5faec63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compose/src/main/scala/compose/dsl/DebugDSL.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ object DebugDSL {

import ExecutionPlan._

final def debug[B1 >: B](name: String): A ~> B1 = Lambda.unsafe
.attempt[A, B1] { Debugger.Debug(self.compile, name) }
final def debug(name: String): A ~> B = Lambda.unsafe
.attempt[A, B] { Debugger.Debug(self.compile, name) }

final def show(name: String): A ~> B = Lambda.unsafe
.attempt[A, B](Debugger.Show(self.compile, name))
Expand Down

0 comments on commit 5faec63

Please sign in to comment.