what-the-bank/sources/o/UtM.java

25 lines
627 B
Java

package o;
import android.graphics.Bitmap;
import java.lang.reflect.InvocationTargetException;
/* loaded from: classes3.dex */
public final class UtM<T> implements VoW<T> {
private final Class<? extends T> b;
private final Bitmap.Config d;
public UtM(Class<? extends T> cls) {
this(cls, (byte) 0);
}
private UtM(Class<? extends T> cls, byte b) {
this.b = cls;
this.d = null;
}
@Override // o.VoW
public final T c() throws IllegalAccessException, InstantiationException, NoSuchMethodException, InvocationTargetException {
return this.b.newInstance();
}
}