- 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
21 lines
692 B
Java
21 lines
692 B
Java
package kotlin.collections;
|
|
|
|
import java.util.Map;
|
|
import java.util.NoSuchElementException;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public abstract class MapsKt__MapWithDefaultKt {
|
|
public static final Object getOrImplicitDefaultNullable(Map map, Object obj) {
|
|
Intrinsics.checkNotNullParameter(map, "<this>");
|
|
if (map instanceof MapWithDefault) {
|
|
return ((MapWithDefault) map).getOrImplicitDefault(obj);
|
|
}
|
|
Object obj2 = map.get(obj);
|
|
if (obj2 != null || map.containsKey(obj)) {
|
|
return obj2;
|
|
}
|
|
throw new NoSuchElementException("Key " + obj + " is missing in the map.");
|
|
}
|
|
}
|