From ca849a0679dbdb007351e04a82150504cea28121 Mon Sep 17 00:00:00 2001 From: christosts Date: Wed, 20 Nov 2019 10:34:36 +0000 Subject: [PATCH] Fix incorrent javadoc syntax PiperOrigin-RevId: 281480582 --- .../com/google/android/exoplayer2/ExoPlayerImplInternal.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/core/src/main/java/com/google/android/exoplayer2/ExoPlayerImplInternal.java b/library/core/src/main/java/com/google/android/exoplayer2/ExoPlayerImplInternal.java index 6861c6a593..77219c4397 100644 --- a/library/core/src/main/java/com/google/android/exoplayer2/ExoPlayerImplInternal.java +++ b/library/core/src/main/java/com/google/android/exoplayer2/ExoPlayerImplInternal.java @@ -426,7 +426,7 @@ import java.util.concurrent.atomic.AtomicBoolean; * {@link #releaseInternal()} is complete. * * @throws {@link InterruptedException} if the current Thread was interrupted while waiting for - * {{@link #releaseInternal()}} to complete. + * {@link #releaseInternal()} to complete. */ private synchronized void waitUntilReleased() throws InterruptedException { InterruptedException interruptedException = null; @@ -454,7 +454,7 @@ import java.util.concurrent.atomic.AtomicBoolean; * * @param timeoutMs the time in milliseconds to wait for {@link #releaseInternal()} to complete. * @throws {@link InterruptedException} if the current Thread was interrupted while waiting for - * {{@link #releaseInternal()}} to complete. + * {@link #releaseInternal()} to complete. */ private synchronized void waitUntilReleased(long timeoutMs) throws InterruptedException { long deadlineMs = clock.elapsedRealtime() + timeoutMs;