This commit is contained in:
Syer10
2026-05-09 15:41:21 -04:00
parent b40447c4f9
commit a210153ed1
2 changed files with 2 additions and 4 deletions

View File

@@ -43,7 +43,7 @@ dependencies {
// Javalin api
implementation(libs.bundles.javalin)
//implementation(libs.bundles.jackson)
implementation(libs.bundles.jackson)
// GraphQL
implementation(libs.graphql.kotlin.server)

View File

@@ -32,7 +32,5 @@ class CustomCacheMap<K : Any, V : Any> : CacheMap<K, V> {
return this
}
override fun size(): Int {
return cache.size
}
override fun size(): Int = cache.size
}