package androidx.fragment.app; import androidx.lifecycle.ViewModelStore; import java.util.Collection; import java.util.Map; @Deprecated /* loaded from: classes2.dex */ public class FragmentManagerNonConfig { private final Map mChildNonConfigs; private final Collection mFragments; private final Map mViewModelStores; /* JADX INFO: Access modifiers changed from: package-private */ public Map getChildNonConfigs() { return this.mChildNonConfigs; } /* JADX INFO: Access modifiers changed from: package-private */ public Collection getFragments() { return this.mFragments; } /* JADX INFO: Access modifiers changed from: package-private */ public Map getViewModelStores() { return this.mViewModelStores; } /* JADX INFO: Access modifiers changed from: package-private */ public 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); } }