Skip to content

Commit

Permalink
Fix javadoc formatting from backticks to tags
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 653629763
  • Loading branch information
oceanjules authored and copybara-github committed Jul 18, 2024
1 parent f7a726b commit 4ba7fd0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,11 @@
* otherwise. For the vast majority of cases this should be the application's main thread.
* Using the application's main thread is also a requirement when using ExoPlayer's UI
* components or the IMA extension. The thread on which an ExoPlayer instance must be accessed
* can be explicitly specified by passing a `Looper` when creating the player. If no `Looper`
* is specified, then the `Looper` of the thread that the player is created on is used, or if
* that thread does not have a `Looper`, the `Looper` of the application's main thread is
* used. In all cases the `Looper` of the thread from which the player must be accessed can be
* queried using {@link #getApplicationLooper()}.
* can be explicitly specified by passing a {@link Looper} when creating the player. If no
* {@code Looper} is specified, then the {@code Looper} of the thread that the player is
* created on is used, or if that thread does not have a {@code Looper}, the {@code Looper} of
* the application's main thread is used. In all cases the {@code Looper} of the thread from
* which the player must be accessed can be queried using {@link #getApplicationLooper()}.
* <li>Registered listeners are called on the thread associated with {@link
* #getApplicationLooper()}. Note that this means registered listeners are called on the same
* thread which must be used to access the player.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@
* <p>A download manager instance must be accessed only from the thread that created it, unless that
* thread does not have a {@link Looper}. In that case, it must be accessed only from the
* application's main thread. Registered listeners will be called on the same thread. In all cases
* the `Looper` of the thread from which the manager must be accessed can be queried using {@link
* #getApplicationLooper()}.
* the {@code Looper} of the thread from which the manager must be accessed can be queried using
* {@link #getApplicationLooper()}.
*/
@UnstableApi
public final class DownloadManager {
Expand Down

0 comments on commit 4ba7fd0

Please sign in to comment.