From 268b6f28ccdd8ea247496b0ac889aec05badd9b6 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Sat, 1 Feb 2020 01:58:25 +0100 Subject: Dependencies upgrade (Ktor 1.3.0, Spring Boot 2.2.4 and others) --- .../src/main/kotlin/pl/treksoft/kvision/remote/KVModules.kt | 6 ------ 1 file changed, 6 deletions(-) (limited to 'kvision-modules/kvision-server-ktor/src') diff --git a/kvision-modules/kvision-server-ktor/src/main/kotlin/pl/treksoft/kvision/remote/KVModules.kt b/kvision-modules/kvision-server-ktor/src/main/kotlin/pl/treksoft/kvision/remote/KVModules.kt index 34fff02d..11959ea0 100644 --- a/kvision-modules/kvision-server-ktor/src/main/kotlin/pl/treksoft/kvision/remote/KVModules.kt +++ b/kvision-modules/kvision-server-ktor/src/main/kotlin/pl/treksoft/kvision/remote/KVModules.kt @@ -38,7 +38,6 @@ import io.ktor.http.content.static import io.ktor.jackson.jackson import io.ktor.routing.routing import io.ktor.util.AttributeKey -import io.ktor.util.KtorExperimentalAPI import io.ktor.websocket.WebSocketServerSession import io.ktor.websocket.WebSockets import kotlinx.coroutines.channels.ReceiveChannel @@ -127,11 +126,6 @@ class DummyWebSocketServerSession : WebSocketServerSession { override val outgoing: SendChannel get() = throw UnsupportedOperationException() - @UseExperimental(KtorExperimentalAPI::class) - override suspend fun close(cause: Throwable?) { - throw UnsupportedOperationException() - } - override suspend fun flush() { throw UnsupportedOperationException() } -- cgit