remove dead code

This commit is contained in:
B. Petersen 2020-07-24 01:23:58 +02:00
parent 097be99446
commit b3bebbd4d7
No known key found for this signature in database
GPG key ID: 3B88E92DEA8E9AFC
2 changed files with 0 additions and 16 deletions

View file

@ -27,7 +27,5 @@ public interface BindableConversationItem extends Unbindable {
void setEventListener(@Nullable EventListener listener);
interface EventListener {
void onMessageSharedContactClicked(@NonNull List<Recipient> choices);
void onInviteSharedContactClicked(@NonNull List<Recipient> choices);
}
}

View file

@ -731,20 +731,6 @@ public class ConversationFragment extends Fragment
actionMode = ((AppCompatActivity)getActivity()).startSupportActionMode(actionModeCallback);
}
}
@Override
public void onMessageSharedContactClicked(@NonNull List<Recipient> choices) {
if (getContext() == null) return;
// ContactUtil.selectRecipientThroughDialog(getContext(), choices, locale, recipient -> {
// CommunicationActions.startConversation(getContext(), recipient, null);
// });
}
@Override
public void onInviteSharedContactClicked(@NonNull List<Recipient> choices) {
if (getContext() == null) return;
}
}
@Override