discord-jadx/app/src/main/java/com/discord/utilities/mg_recycler/MGRecyclerAdapterSimple$setData$1.java
Juby210 02b39b5eaf
Enable replacing const values in jadx
Tracking changes should be much easier now.
2021-08-10 00:50:52 +02:00

22 lines
922 B
Java

package com.discord.utilities.mg_recycler;
import androidx.recyclerview.widget.DiffUtil;
import java.util.List;
import java.util.concurrent.Callable;
/* compiled from: MGRecyclerAdapterSimple.kt */
public final class MGRecyclerAdapterSimple$setData$1<V> implements Callable<DiffUtil.DiffResult> {
public final /* synthetic */ List $newData;
public final /* synthetic */ List $oldData;
public final /* synthetic */ MGRecyclerAdapterSimple this$0;
public MGRecyclerAdapterSimple$setData$1(MGRecyclerAdapterSimple mGRecyclerAdapterSimple, List list, List list2) {
this.this$0 = mGRecyclerAdapterSimple;
this.$oldData = list;
this.$newData = list2;
}
@Override // java.util.concurrent.Callable
public final DiffUtil.DiffResult call() {
return MGRecyclerAdapterSimple.access$getDiffCreator$p(this.this$0).calculateDiffResult(this.$oldData, this.$newData);
}
}