Initial version -- added millennium read funcionality
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
package com.google.maps.android.compose;
|
||||
|
||||
import androidx.compose.ui.unit.LayoutDirection;
|
||||
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$2 implements Function2<MapPropertiesNode, LayoutDirection, Unit> {
|
||||
public static final MapUpdaterKt$MapUpdater$2$2 INSTANCE = new MapUpdaterKt$MapUpdater$2$2();
|
||||
|
||||
@Override // kotlin.jvm.functions.Function2
|
||||
public /* bridge */ /* synthetic */ Unit invoke(MapPropertiesNode mapPropertiesNode, LayoutDirection layoutDirection) {
|
||||
invoke2(mapPropertiesNode, layoutDirection);
|
||||
return Unit.INSTANCE;
|
||||
}
|
||||
|
||||
/* JADX INFO: renamed from: invoke, reason: avoid collision after fix types in other method */
|
||||
public final void invoke2(MapPropertiesNode update, LayoutDirection it) {
|
||||
Intrinsics.checkNotNullParameter(update, "$this$update");
|
||||
Intrinsics.checkNotNullParameter(it, "it");
|
||||
update.setLayoutDirection(it);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user