mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
41 lines
1.3 KiB
Java
41 lines
1.3 KiB
Java
package kotlin.jvm.internal;
|
|
|
|
import java.io.Serializable;
|
|
import kotlin.reflect.KFunction;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class FunInterfaceConstructorReference extends FunctionReference implements Serializable {
|
|
private final Class funInterface;
|
|
|
|
public FunInterfaceConstructorReference(Class cls) {
|
|
super(1);
|
|
this.funInterface = cls;
|
|
}
|
|
|
|
@Override // kotlin.jvm.internal.FunctionReference
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj instanceof FunInterfaceConstructorReference) {
|
|
return this.funInterface.equals(((FunInterfaceConstructorReference) obj).funInterface);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
@Override // kotlin.jvm.internal.FunctionReference
|
|
public int hashCode() {
|
|
return this.funInterface.hashCode();
|
|
}
|
|
|
|
@Override // kotlin.jvm.internal.FunctionReference
|
|
public String toString() {
|
|
return "fun interface " + this.funInterface.getName();
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: protected */
|
|
@Override // kotlin.jvm.internal.FunctionReference, kotlin.jvm.internal.CallableReference
|
|
public KFunction getReflected() {
|
|
throw new UnsupportedOperationException("Functional interface constructor does not support reflection");
|
|
}
|
|
}
|