From f37ab8e656747cf8685f0e160f8b958cc48380a4 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Sat, 7 Feb 2026 18:25:23 -0500 Subject: [PATCH] Moves to LruCache from androidx --- .../com/vitorpamplona/amethyst/model/MediaAspectRatioCache.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/model/MediaAspectRatioCache.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/model/MediaAspectRatioCache.kt index b4b199f9d..fb139fa11 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/model/MediaAspectRatioCache.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/model/MediaAspectRatioCache.kt @@ -20,7 +20,7 @@ */ package com.vitorpamplona.amethyst.model -import android.util.LruCache +import androidx.collection.LruCache interface MutableMediaAspectRatioCache { fun get(url: String): Float?