Skip to content

Commit

Permalink
add a nonnull annotation to the context parameter in the DownloadDial…
Browse files Browse the repository at this point in the history
…og constructor.
  • Loading branch information
plasticanu committed Oct 19, 2022
1 parent 10e18ec commit 52963ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public DownloadDialog() {
* @param context the context to use just to obtain preferences and strings (will not be stored)
* @param info the info from which to obtain downloadable streams and other info (e.g. title)
*/
public DownloadDialog(final Context context, @NonNull final StreamInfo info) {
public DownloadDialog(@NonNull final Context context, @NonNull final StreamInfo info) {
this.currentInfo = info;

// TODO: Adapt this code when the downloader support other types of stream deliveries
Expand Down

0 comments on commit 52963ba

Please sign in to comment.