From ab1c7dd4d25f2e36abc8fe494ee11145e6fec8d4 Mon Sep 17 00:00:00 2001 From: James Rich Date: Sat, 18 Jul 2026 09:14:32 -0500 Subject: [PATCH] style: spotless reformat of TileCaches Co-Authored-By: Claude Fable 5 --- .../meshtastic/feature/map/mapcompose/tile/TileCaches.kt | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/feature/map/src/commonMain/kotlin/org/meshtastic/feature/map/mapcompose/tile/TileCaches.kt b/feature/map/src/commonMain/kotlin/org/meshtastic/feature/map/mapcompose/tile/TileCaches.kt index 7e17ad04a8..57eeaf336d 100644 --- a/feature/map/src/commonMain/kotlin/org/meshtastic/feature/map/mapcompose/tile/TileCaches.kt +++ b/feature/map/src/commonMain/kotlin/org/meshtastic/feature/map/mapcompose/tile/TileCaches.kt @@ -25,8 +25,7 @@ package org.meshtastic.feature.map.mapcompose.tile internal object TileCaches { private val caches = mutableMapOf() - fun shared(environment: TileCacheEnvironment): TileDiskCache = - caches.getOrPut(environment.cacheRoot.toString()) { - TileDiskCache(environment.fileSystem, environment.cacheRoot) - } + fun shared(environment: TileCacheEnvironment): TileDiskCache = caches.getOrPut(environment.cacheRoot.toString()) { + TileDiskCache(environment.fileSystem, environment.cacheRoot) + } }