29 lines
496 B
Java
29 lines
496 B
Java
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;
|
|
}
|
|
}
|