discord-jadx/app/src/main/java/com/discord/utilities/threads/ThreadUtils$getThreadTimest...

13 lines
798 B
Java
Raw Normal View History

2021-06-27 20:44:35 +00:00
package com.discord.utilities.threads;
import com.discord.stores.StoreThreadsActiveJoined;
import java.util.Comparator;
/* compiled from: ThreadUtils.kt */
public final class ThreadUtils$getThreadTimestampComparator$1<T> implements Comparator<StoreThreadsActiveJoined.ActiveJoinedThread> {
public static final ThreadUtils$getThreadTimestampComparator$1 INSTANCE = new ThreadUtils$getThreadTimestampComparator$1();
public final int compare(StoreThreadsActiveJoined.ActiveJoinedThread activeJoinedThread, StoreThreadsActiveJoined.ActiveJoinedThread activeJoinedThread2) {
return (activeJoinedThread2.getJoinTimestamp().f() > activeJoinedThread.getJoinTimestamp().f() ? 1 : (activeJoinedThread2.getJoinTimestamp().f() == activeJoinedThread.getJoinTimestamp().f() ? 0 : -1));
}
}