27 lines
1.1 KiB
Java
27 lines
1.1 KiB
Java
package com.google.maps.android.compose;
|
|
|
|
import androidx.compose.ui.unit.Density;
|
|
import kotlin.Metadata;
|
|
import kotlin.Unit;
|
|
import kotlin.jvm.functions.Function2;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* JADX INFO: compiled from: MapUpdater.kt */
|
|
/* JADX INFO: loaded from: classes2.dex */
|
|
@Metadata(k = 3, mv = {2, 0, 0}, xi = 176)
|
|
public final class MapUpdaterKt$MapUpdater$2$1 implements Function2<MapPropertiesNode, Density, Unit> {
|
|
public static final MapUpdaterKt$MapUpdater$2$1 INSTANCE = new MapUpdaterKt$MapUpdater$2$1();
|
|
|
|
@Override // kotlin.jvm.functions.Function2
|
|
public /* bridge */ /* synthetic */ Unit invoke(MapPropertiesNode mapPropertiesNode, Density density) {
|
|
invoke2(mapPropertiesNode, density);
|
|
return Unit.INSTANCE;
|
|
}
|
|
|
|
/* JADX INFO: renamed from: invoke, reason: avoid collision after fix types in other method */
|
|
public final void invoke2(MapPropertiesNode update, Density it) {
|
|
Intrinsics.checkNotNullParameter(update, "$this$update");
|
|
Intrinsics.checkNotNullParameter(it, "it");
|
|
update.setDensity(it);
|
|
}
|
|
} |