1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-04-06 02:37:18 +00:00

sharePlaylist(): converting javadoc from Markdown back to "classic javadoc"

(request from @Stypox)
This commit is contained in:
Thiago F. G. Albuquerque 2025-03-14 21:56:42 -03:00
parent be097f26c8
commit 2ceb70236e

View File

@ -388,15 +388,16 @@ public class LocalPlaylistFragment extends BaseLocalListFragment<List<PlaylistSt
return true;
}
///
/// Shares the playlist in one of 3 ways, depending on the value of `shareMode`:
///
/// - `JUST_URLS`: shares the URLs only.
/// - `WITH_TITLES`: each entry in the list is accompanied by its title.
/// - `YOUTUBE_TEMP_PLAYLIST`: shares as a YouTube temporary playlist.
///
/// @param shareMode The way the playlist should be shared.
///
/**
* Shares the playlist in one of 3 ways, depending on the value of {@code shareMode}:
* <ul>
* <li>{@code JUST_URLS}: shares the URLs only.</li>
* <li>{@code WITH_TITLES}: each entry in the list is accompanied by its title.</li>
* <li>{@code YOUTUBE_TEMP_PLAYLIST}: shares as a YouTube temporary playlist.</li>
* </ul>
*
* @param shareMode The way the playlist should be shared.
*/
private void sharePlaylist(final PlayListShareMode shareMode) {
final Context context = requireContext();