discord-jadx/app/src/main/java/com/discord/utilities/time/TimeUtils$toFriendlyStringSimple$1.java
2021-06-27 22:44:35 +02:00

37 lines
1.4 KiB
Java

package com.discord.utilities.time;
import com.discord.i18n.RenderContext;
import d0.z.d.m;
import d0.z.d.o;
import java.util.Map;
import kotlin.Unit;
import kotlin.jvm.functions.Function1;
/* compiled from: TimeUtils.kt */
public final class TimeUtils$toFriendlyStringSimple$1 extends o implements Function1<RenderContext, Unit> {
public final /* synthetic */ String $argName;
public final /* synthetic */ String $elapsedTime;
/* JADX INFO: super call moved to the top of the method (can break code semantics) */
public TimeUtils$toFriendlyStringSimple$1(String str, String str2) {
super(1);
this.$elapsedTime = str;
this.$argName = str2;
}
/* Return type fixed from 'java.lang.Object' to match base method */
/* JADX DEBUG: Method arguments types fixed to match base method, original types: [java.lang.Object] */
@Override // kotlin.jvm.functions.Function1
public /* bridge */ /* synthetic */ Unit invoke(RenderContext renderContext) {
invoke(renderContext);
return Unit.a;
}
public final void invoke(RenderContext renderContext) {
m.checkNotNullParameter(renderContext, "$receiver");
Map<String, String> map = renderContext.a;
String str = this.$argName;
String str2 = this.$elapsedTime;
m.checkNotNullExpressionValue(str2, "elapsedTime");
map.put(str, str2);
}
}