Fix for error while generating scaladocs
This commit is contained in:
parent
053dbf3b60
commit
00494cf95d
1 changed files with 1 additions and 1 deletions
|
|
@ -310,7 +310,7 @@ object Future {
|
|||
def flow[A](body: ⇒ A @cps[Future[Any]])(implicit dispatcher: MessageDispatcher, timeout: Timeout): Future[A] = {
|
||||
val future = Promise[A](timeout)
|
||||
//dispatcher dispatchTask { () ⇒
|
||||
reify(body) foreachFull (future completeWithResult, future completeWithException) onException {
|
||||
(reify(body) foreachFull (future completeWithResult, future completeWithException): Future[Any]) onException {
|
||||
case e: Exception ⇒ future completeWithException e
|
||||
}
|
||||
//}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue