+htc, htp: small improvement to HttpMessage::withDefaultHeaders

This commit is contained in:
Mathias 2015-04-23 15:11:39 +02:00
parent 475c073997
commit 4d3b0e4edc
3 changed files with 15 additions and 8 deletions

View file

@ -28,7 +28,7 @@ trait RespondWithDirectives {
* Unconditionally adds the given response headers to all HTTP responses of its inner Route.
*/
def respondWithHeaders(responseHeaders: HttpHeader*): Directive0 =
respondWithHeaders(responseHeaders.toVector)
respondWithHeaders(responseHeaders.toList)
/**
* Unconditionally adds the given response headers to all HTTP responses of its inner Route.
@ -41,7 +41,7 @@ trait RespondWithDirectives {
* if a header already exists it is not added again.
*/
def respondWithDefaultHeaders(responseHeaders: HttpHeader*): Directive0 =
respondWithDefaultHeaders(responseHeaders.toVector)
respondWithDefaultHeaders(responseHeaders.toList)
/* Adds the given response headers to all HTTP responses of its inner Route,
* if a header already exists it is not added again.