Fix memory leak in contact selection list.

This commit is contained in:
Varsha
2022-11-14 13:49:26 -08:00
committed by Alex Hart
parent bba1315906
commit b47e5f2fa9

View File

@@ -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();
}