package androidx.core.util; /* loaded from: classes.dex */ public class Pools$SynchronizedPool extends Pools$SimplePool { private final Object c; public Pools$SynchronizedPool(int i) { super(i); this.c = new Object(); } @Override // androidx.core.util.Pools$SimplePool, androidx.core.util.Pools$Pool public T a() { T t; synchronized (this.c) { t = (T) super.a(); } return t; } @Override // androidx.core.util.Pools$SimplePool, androidx.core.util.Pools$Pool public boolean a(T t) { boolean a; synchronized (this.c) { a = super.a(t); } return a; } }