Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert notes adapter to kotlin #20129

Merged
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ private NotificationDetailFragmentAdapter buildNoteListAdapterAndSetPosition(Not
ArrayList<Note> filteredNotes = new ArrayList<>();

// apply filter to the list so we show the same items that the list show vertically, but horizontally
NotesAdapter.buildFilteredNotesList(filteredNotes, notes, filter);
NotesAdapter.Companion.buildFilteredNotesList(filteredNotes, notes, filter);
adapter = new NotificationDetailFragmentAdapter(getSupportFragmentManager(), filteredNotes);

if (mBinding != null) {
Expand Down
Loading
Loading