Skip to content

Commit

Permalink
Fix unchecked warning in FullDetailsFragment
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsvanvelzen committed May 31, 2024
1 parent f31a809 commit 6eb97d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -961,7 +961,7 @@ public void onClick(View v) {
if (versions != null) {
addVersionsMenu(v);
} else {
versions = new ArrayList(mBaseItem.getMediaSources());
versions = new ArrayList<>(mBaseItem.getMediaSources());
addVersionsMenu(v);
}
}
Expand Down

0 comments on commit 6eb97d6

Please sign in to comment.