0
0
mirror of https://github.com/ankidroid/Anki-Android.git synced 2024-09-20 12:02:16 +02:00

NF: remove an unused constructor

This commit is contained in:
Arthur Milchior 2021-11-01 17:53:45 +01:00 committed by Mike Hardy
parent 9c285185bd
commit efe31ca014

View File

@ -84,13 +84,6 @@ public class DeckSpinnerSelection {
this.mWithFragmentManager = FragmentManagerUtilsKt.toFragmentManager(context);
}
public DeckSpinnerSelection(@NonNull Fragment fragment, @NonNull Collection collection, @NonNull Spinner spinner) {
this.mContext = fragment.getContext();
this.mCollection = collection;
this.mSpinner = spinner;
this.mWithFragmentManager = FragmentManagerUtilsKt.toFragmentManager(fragment);
}
public void setShowAllDecks(boolean showAllDecks) {
mShowAllDecks = showAllDecks;
}