Fix memory leak in contact selection list.

main
Varsha 2022-11-14 13:49:26 -08:00 zatwierdzone przez Alex Hart
rodzic bba1315906
commit b47e5f2fa9
1 zmienionych plików z 6 dodań i 0 usunięć

Wyświetl plik

@ -356,6 +356,12 @@ public final class ContactSelectionListFragment extends LoggingFragment
return view;
}
@Override
public void onDestroyView() {
super.onDestroyView();
constraintLayout = null;
}
private @NonNull Bundle safeArguments() {
return getArguments() != null ? getArguments() : new Bundle();
}