From de3a6a85c975e37250afa64589af0a8b6d20e535 Mon Sep 17 00:00:00 2001 From: ricebin Date: Tue, 8 Feb 2022 11:52:52 -0800 Subject: [PATCH] Remove duplicate Objects.equals call. --- .../java/org/thoughtcrime/securesms/recipients/Recipient.java | 1 - 1 file changed, 1 deletion(-) diff --git a/app/src/main/java/org/thoughtcrime/securesms/recipients/Recipient.java b/app/src/main/java/org/thoughtcrime/securesms/recipients/Recipient.java index 192e14f6dd..72443e8378 100644 --- a/app/src/main/java/org/thoughtcrime/securesms/recipients/Recipient.java +++ b/app/src/main/java/org/thoughtcrime/securesms/recipients/Recipient.java @@ -1201,7 +1201,6 @@ public class Recipient { profileSharing == other.profileSharing && lastProfileFetch == other.lastProfileFetch && forceSmsSelection == other.forceSmsSelection && - Objects.equals(id, other.id) && Objects.equals(aci, other.aci) && Objects.equals(username, other.username) && Objects.equals(e164, other.e164) &&