Fix codestyle

This commit is contained in:
Sergey Mashkov
2020-01-30 16:24:26 +03:00
parent 0fda2cb0a9
commit 8e16ed877f

View File

@@ -60,9 +60,10 @@ class ServerRequestScope internal constructor(
* Creates another request scope with same parameters except coroutine context
*/
@KtorExperimentalAPI
fun withContext(coroutineContext: CoroutineContext): ServerRequestScope =
ServerRequestScope(this.coroutineContext + coroutineContext,
input, output, remoteAddress, upgraded)
fun withContext(coroutineContext: CoroutineContext): ServerRequestScope = ServerRequestScope(
this.coroutineContext + coroutineContext,
input, output, remoteAddress, upgraded
)
}
/**