package androidx.fragment.app; import androidx.lifecycle.ViewModelStore; import java.util.Collection; import java.util.Map; @Deprecated /* loaded from: classes.dex */ public class FragmentManagerNonConfig { private final Map mChildNonConfigs; private final Collection mFragments; private final Map mViewModelStores; Map getChildNonConfigs() { return this.mChildNonConfigs; } Collection getFragments() { return this.mFragments; } Map getViewModelStores() { return this.mViewModelStores; } FragmentManagerNonConfig(Collection collection, Map map, Map map2) { this.mFragments = collection; this.mChildNonConfigs = map; this.mViewModelStores = map2; } boolean isRetaining(Fragment fragment) { Collection collection = this.mFragments; if (collection == null) { return false; } return collection.contains(fragment); } }