Commit ca849a06 by christosts Committed by Oliver Woodman

Fix incorrent javadoc syntax

PiperOrigin-RevId: 281480582
parent f921d0d3
...@@ -426,7 +426,7 @@ import java.util.concurrent.atomic.AtomicBoolean; ...@@ -426,7 +426,7 @@ import java.util.concurrent.atomic.AtomicBoolean;
* {@link #releaseInternal()} is complete. * {@link #releaseInternal()} is complete.
* *
* @throws {@link InterruptedException} if the current Thread was interrupted while waiting for * @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 { private synchronized void waitUntilReleased() throws InterruptedException {
InterruptedException interruptedException = null; InterruptedException interruptedException = null;
...@@ -454,7 +454,7 @@ import java.util.concurrent.atomic.AtomicBoolean; ...@@ -454,7 +454,7 @@ import java.util.concurrent.atomic.AtomicBoolean;
* *
* @param timeoutMs the time in milliseconds to wait for {@link #releaseInternal()} to complete. * @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 * @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 { private synchronized void waitUntilReleased(long timeoutMs) throws InterruptedException {
long deadlineMs = clock.elapsedRealtime() + timeoutMs; long deadlineMs = clock.elapsedRealtime() + timeoutMs;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment