Rabbit-R1/switch port/java/sources/com/airbnb/lottie/model/LottieCompositionCache.java
2024-05-21 17:08:36 -04:00

39 lines
954 B
Java

package com.airbnb.lottie.model;
import androidx.collection.LruCache;
import com.airbnb.lottie.LottieComposition;
/* loaded from: classes2.dex */
public class LottieCompositionCache {
private static final LottieCompositionCache INSTANCE = new LottieCompositionCache();
private final LruCache<String, LottieComposition> cache = new LruCache<>(20);
public static LottieCompositionCache getInstance() {
return INSTANCE;
}
LottieCompositionCache() {
}
public LottieComposition get(String str) {
if (str == null) {
return null;
}
return this.cache.get(str);
}
public void put(String str, LottieComposition lottieComposition) {
if (str == null) {
return;
}
this.cache.put(str, lottieComposition);
}
public void clear() {
this.cache.evictAll();
}
public void resize(int i) {
this.cache.resize(i);
}
}