Fix incorrent javadoc syntax

PiperOrigin-RevId: 281480582
This commit is contained in:
christosts 2019-11-20 10:34:36 +00:00 committed by Oliver Woodman
parent f921d0d3e5
commit ca849a0679

View file

@ -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;