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

29 lines
496 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import dagger.Lazy;
/* loaded from: classes5.dex */
public final class fPH<T> implements fPK<T>, Lazy<T> {
private final T e;
public static <T> fPK<T> e(T t) {
if (t != null) {
return new fPH(t);
}
throw new NullPointerException("instance cannot be null");
}
static {
new fPH(null);
}
private fPH(T t) {
this.e = t;
}
@Override // o.fZE
public final T get() {
return this.e;
}
}