1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-08-04 04:53:52 +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; return true;
} }
/// /**
/// Shares the playlist in one of 3 ways, depending on the value of `shareMode`: * Shares the playlist in one of 3 ways, depending on the value of {@code shareMode}:
/// * <ul>
/// - `JUST_URLS`: shares the URLs only. * <li>{@code JUST_URLS}: shares the URLs only.</li>
/// - `WITH_TITLES`: each entry in the list is accompanied by its title. * <li>{@code WITH_TITLES}: each entry in the list is accompanied by its title.</li>
/// - `YOUTUBE_TEMP_PLAYLIST`: shares as a YouTube temporary playlist. * <li>{@code YOUTUBE_TEMP_PLAYLIST}: shares as a YouTube temporary playlist.</li>
/// * </ul>
/// @param shareMode The way the playlist should be shared. *
/// * @param shareMode The way the playlist should be shared.
*/
private void sharePlaylist(final PlayListShareMode shareMode) { private void sharePlaylist(final PlayListShareMode shareMode) {
final Context context = requireContext(); final Context context = requireContext();