discord-jadx/app/src/main/java/com/discord/models/domain/ModelMuteConfig$Parser$parse$1.java
2021-08-03 09:33:18 +02:00

23 lines
840 B
Java

package com.discord.models.domain;
import com.discord.models.domain.Model;
import kotlin.jvm.internal.Ref$ObjectRef;
import rx.functions.Action1;
/* compiled from: ModelMuteConfig.kt */
public final class ModelMuteConfig$Parser$parse$1<T> implements Action1<String> {
public final /* synthetic */ Ref$ObjectRef $endTime;
public final /* synthetic */ Model.JsonReader $reader;
public ModelMuteConfig$Parser$parse$1(Ref$ObjectRef ref$ObjectRef, Model.JsonReader jsonReader) {
this.$endTime = ref$ObjectRef;
this.$reader = jsonReader;
}
public final void call(String str) {
if (str != null && str.hashCode() == 1725551537 && str.equals("end_time")) {
this.$endTime.element = (T) this.$reader.nextStringOrNull();
return;
}
this.$reader.skipValue();
}
}