From 253c8ce2adf64c96fffe9b4697599048563edc28 Mon Sep 17 00:00:00 2001 From: gyumin Date: Fri, 9 Apr 2021 10:24:04 +0100 Subject: [PATCH] Fix errors when generating javadoc PiperOrigin-RevId: 367596648 --- .../exoplayer2/ui/PlayerNotificationManager.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/library/ui/src/main/java/com/google/android/exoplayer2/ui/PlayerNotificationManager.java b/library/ui/src/main/java/com/google/android/exoplayer2/ui/PlayerNotificationManager.java index 3e108ceb5c..eefd6a7293 100644 --- a/library/ui/src/main/java/com/google/android/exoplayer2/ui/PlayerNotificationManager.java +++ b/library/ui/src/main/java/com/google/android/exoplayer2/ui/PlayerNotificationManager.java @@ -424,7 +424,7 @@ public class PlayerNotificationManager { * The resource id of the small icon of the notification shown in the status bar. See {@link * NotificationCompat.Builder#setSmallIcon(int)}. * - *

The default is {@link R.drawable#exo_notification_small_icon}. + *

The default is {@code R.drawable#exo_notification_small_icon}. * * @return This builder. */ @@ -436,7 +436,7 @@ public class PlayerNotificationManager { /** * The resource id of the drawable to be used as the icon of action {@link #ACTION_PLAY}. * - *

The default is {@link R.drawable#exo_notification_play}. + *

The default is {@code R.drawable#exo_notification_play}. * * @return This builder. */ @@ -448,7 +448,7 @@ public class PlayerNotificationManager { /** * The resource id of the drawable to be used as the icon of action {@link #ACTION_PAUSE}. * - *

The default is {@link R.drawable#exo_notification_pause}. + *

The default is {@code R.drawable#exo_notification_pause}. * * @return This builder. */ @@ -460,7 +460,7 @@ public class PlayerNotificationManager { /** * The resource id of the drawable to be used as the icon of action {@link #ACTION_STOP}. * - *

The default is {@link R.drawable#exo_notification_stop}. + *

The default is {@code R.drawable#exo_notification_stop}. * * @return This builder. */ @@ -472,7 +472,7 @@ public class PlayerNotificationManager { /** * The resource id of the drawable to be used as the icon of action {@link #ACTION_REWIND}. * - *

The default is {@link R.drawable#exo_notification_rewind}. + *

The default is {@code R.drawable#exo_notification_rewind}. * * @return This builder. */ @@ -485,7 +485,7 @@ public class PlayerNotificationManager { * The resource id of the drawable to be used as the icon of action {@link * #ACTION_FAST_FORWARD}. * - *

The default is {@link R.drawable#exo_notification_fastforward}. + *

The default is {@code R.drawable#exo_notification_fastforward}. * * @return This builder. */ @@ -497,7 +497,7 @@ public class PlayerNotificationManager { /** * The resource id of the drawable to be used as the icon of action {@link #ACTION_PREVIOUS}. * - *

The default is {@link R.drawable#exo_notification_previous}. + *

The default is {@code R.drawable#exo_notification_previous}. * * @return This builder. */ @@ -509,7 +509,7 @@ public class PlayerNotificationManager { /** * The resource id of the drawable to be used as the icon of action {@link #ACTION_NEXT}. * - *

The default is {@link R.drawable#exo_notification_next}. + *

The default is {@code R.drawable#exo_notification_next}. * * @return This builder. */