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 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); } }