Rabbit-R1/android (non root)/java/sources/androidx/compose/runtime/OpaqueKey.java

53 lines
2.2 KiB
Java
Raw Normal View History

2024-05-21 16:08:36 -05:00
package androidx.compose.runtime;
import kotlin.Metadata;
import kotlin.jvm.internal.Intrinsics;
/* compiled from: OpaqueKey.kt */
@Metadata(d1 = {"\u0000\"\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0006\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u0002\b\u0080\b\u0018\u00002\u00020\u0001B\r\u0012\u0006\u0010\u0002\u001a\u00020\u0003¢\u0006\u0002\u0010\u0004J\t\u0010\u0007\u001a\u00020\u0003HÆ\u0003J\u0013\u0010\b\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u0003HÆ\u0001J\u0013\u0010\t\u001a\u00020\n2\b\u0010\u000b\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010\f\u001a\u00020\rHÖ\u0001J\t\u0010\u000e\u001a\u00020\u0003HÖ\u0001R\u0011\u0010\u0002\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u0005\u0010\u0006¨\u0006\u000f"}, d2 = {"Landroidx/compose/runtime/OpaqueKey;", "", "key", "", "(Ljava/lang/String;)V", "getKey", "()Ljava/lang/String;", "component1", "copy", "equals", "", "other", "hashCode", "", "toString", "runtime_release"}, k = 1, mv = {1, 8, 0}, xi = 48)
/* loaded from: classes.dex */
public final /* data */ class OpaqueKey {
private final String key;
public static /* synthetic */ OpaqueKey copy$default(OpaqueKey opaqueKey, String str, int i, Object obj) {
if ((i & 1) != 0) {
str = opaqueKey.key;
}
return opaqueKey.copy(str);
}
/* renamed from: component1, reason: from getter */
public final String getKey() {
return this.key;
}
public final OpaqueKey copy(String key) {
Intrinsics.checkNotNullParameter(key, "key");
return new OpaqueKey(key);
}
public boolean equals(Object other) {
if (this == other) {
return true;
}
return (other instanceof OpaqueKey) && Intrinsics.areEqual(this.key, ((OpaqueKey) other).key);
}
public final String getKey() {
return this.key;
}
public int hashCode() {
return this.key.hashCode();
}
public String toString() {
return "OpaqueKey(key=" + this.key + ')';
}
public OpaqueKey(String key) {
Intrinsics.checkNotNullParameter(key, "key");
this.key = key;
}
}