def eventually[Ignore]()

in api/src/main/scala/com/gu/core/utils/ErrorHandling.scala [12:15]


    def eventually[Ignore](effect: => Ignore): Try[A] = {
      val ignoring = (_: Any) => { effect; t }
      t transform (ignoring, ignoring)
    }