From dc1842efb98545772513a6f7c7744afd503a2495 Mon Sep 17 00:00:00 2001 From: krocard Date: Tue, 19 Jan 2021 13:40:45 +0000 Subject: [PATCH] Convert back code to link The code is no longer in common so can directly link to Player. PiperOrigin-RevId: 352548323 --- .../com/google/android/exoplayer2/ExoTimeoutException.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/library/core/src/main/java/com/google/android/exoplayer2/ExoTimeoutException.java b/library/core/src/main/java/com/google/android/exoplayer2/ExoTimeoutException.java index a6af2d193c..c35f6fa95e 100644 --- a/library/core/src/main/java/com/google/android/exoplayer2/ExoTimeoutException.java +++ b/library/core/src/main/java/com/google/android/exoplayer2/ExoTimeoutException.java @@ -41,11 +41,9 @@ public final class ExoTimeoutException extends Exception { /** The operation where this error occurred is not defined. */ public static final int TIMEOUT_OPERATION_UNDEFINED = 0; - // TODO(b/172315872) Change back @code to @link when the Player is in common. - /** The error occurred in {@code Player#release}. */ + /** The error occurred in {@link Player#release}. */ public static final int TIMEOUT_OPERATION_RELEASE = 1; - /** The error occurred in {@code ExoPlayer#setForegroundMode}. */ - // TODO(b/172315872) Set foregroundMode is an ExoPlayer method, NOT a player one. + /** The error occurred in {@link ExoPlayer#setForegroundMode}. */ public static final int TIMEOUT_OPERATION_SET_FOREGROUND_MODE = 2; /** The error occurred while detaching a surface from the player. */ public static final int TIMEOUT_OPERATION_DETACH_SURFACE = 3;