That fuck shit the fascists are using
1package org.tm.archive.database;
2
3import androidx.annotation.NonNull;
4
5import org.tm.archive.recipients.RecipientId;
6
7/**
8 * Indicates that this table references a RecipientId. RecipientIds can be remapped at runtime if recipients merge, and therefore this table needs to be able to
9 * handle remapping one RecipientId to another.
10 */
11interface RecipientIdDatabaseReference {
12 void remapRecipient(@NonNull RecipientId fromId, @NonNull RecipientId toId);
13}