mirror of
https://github.com/samsonjs/media.git
synced 2026-04-02 10:45:51 +00:00
Fix incorrent javadoc syntax
PiperOrigin-RevId: 281480582
This commit is contained in:
parent
f921d0d3e5
commit
ca849a0679
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue