Files
rr3-apk/decompiled-community/sources/com/google/common/collect/AbstractMapEntry.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- Added realracing3-community.apk (71.57 MB)
- Removed 32-bit support (armeabi-v7a)
- Only includes arm64-v8a libraries
- Decompiled source code included
- Added README-community.md with analysis
2026-02-18 15:48:36 -08:00

41 lines
1.2 KiB
Java

package com.google.common.collect;
import com.google.common.base.Objects;
import com.ironsource.v8;
import java.util.Map;
/* loaded from: classes3.dex */
public abstract class AbstractMapEntry implements Map.Entry {
@Override // java.util.Map.Entry
public abstract Object getKey();
@Override // java.util.Map.Entry
public abstract Object getValue();
@Override // java.util.Map.Entry
public boolean equals(Object obj) {
if (!(obj instanceof Map.Entry)) {
return false;
}
Map.Entry entry = (Map.Entry) obj;
return Objects.equal(getKey(), entry.getKey()) && Objects.equal(getValue(), entry.getValue());
}
@Override // java.util.Map.Entry
public int hashCode() {
Object key = getKey();
Object value = getValue();
return (key == null ? 0 : key.hashCode()) ^ (value != null ? value.hashCode() : 0);
}
public String toString() {
String valueOf = String.valueOf(getKey());
String valueOf2 = String.valueOf(getValue());
StringBuilder sb = new StringBuilder(valueOf.length() + 1 + valueOf2.length());
sb.append(valueOf);
sb.append(v8.i.b);
sb.append(valueOf2);
return sb.toString();
}
}