summaryrefslogtreecommitdiff
path: root/sw-server
diff options
context:
space:
mode:
Diffstat (limited to 'sw-server')
-rw-r--r--sw-server/src/main/kotlin/org/luxons/sevenwonders/server/config/WebMvcConfig.kt15
1 files changed, 0 insertions, 15 deletions
diff --git a/sw-server/src/main/kotlin/org/luxons/sevenwonders/server/config/WebMvcConfig.kt b/sw-server/src/main/kotlin/org/luxons/sevenwonders/server/config/WebMvcConfig.kt
deleted file mode 100644
index a30d9fa4..00000000
--- a/sw-server/src/main/kotlin/org/luxons/sevenwonders/server/config/WebMvcConfig.kt
+++ /dev/null
@@ -1,15 +0,0 @@
-package org.luxons.sevenwonders.server.config
-
-import org.springframework.context.annotation.Configuration
-import org.springframework.http.converter.HttpMessageConverter
-import org.springframework.http.converter.json.KotlinSerializationJsonHttpMessageConverter
-import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport
-
-@Configuration
-class WebMvcConfig : WebMvcConfigurationSupport() {
-
- override fun configureMessageConverters(converters: MutableList<HttpMessageConverter<*>?>) {
- converters.add(KotlinSerializationJsonHttpMessageConverter())
- addDefaultHttpMessageConverters(converters)
- }
-}
bgstack15