aboutsummaryrefslogtreecommitdiff
path: root/core/src
diff options
context:
space:
mode:
authoradamw <adam@warski.org>2017-08-03 14:29:33 +0200
committeradamw <adam@warski.org>2017-08-03 14:29:33 +0200
commit4fb65e25f528cb29a16d575fef7ecfd79c6b9fb9 (patch)
tree423b1966864dc5141b78fa5e425589e0109293d9 /core/src
parentc07f98349ac5dc646855d00425a9dc2c3324465e (diff)
downloadsttp-4fb65e25f528cb29a16d575fef7ecfd79c6b9fb9.tar.gz
sttp-4fb65e25f528cb29a16d575fef7ecfd79c6b9fb9.tar.bz2
sttp-4fb65e25f528cb29a16d575fef7ecfd79c6b9fb9.zip
Fix 2.11 compile
Diffstat (limited to 'core/src')
-rw-r--r--core/src/main/scala/com/softwaremill/sttp/SttpHandler.scala1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/src/main/scala/com/softwaremill/sttp/SttpHandler.scala b/core/src/main/scala/com/softwaremill/sttp/SttpHandler.scala
index bdcc1b5..c6df151 100644
--- a/core/src/main/scala/com/softwaremill/sttp/SttpHandler.scala
+++ b/core/src/main/scala/com/softwaremill/sttp/SttpHandler.scala
@@ -11,6 +11,7 @@ import scala.language.higherKinds
trait SttpHandler[R[_], -S] {
def send[T](request: Request[T, S]): R[Response[T]]
def close(): Unit = {}
+
/**
* The monad in which the responses are wrapped. Allows writing wrapper
* handlers, which map/flatMap over the return value of [[send]].