8248772: Extra comma in documentation of Thread#interrupt()

Reviewed-by: coffeys, rriggs
This commit is contained in:
Evan Whelan 2020-09-01 13:35:47 +00:00 committed by Sean Coffey
parent a1176dc8c9
commit 0d1aa3cbc8

@ -952,7 +952,7 @@ public class Thread implements Runnable {
* Object#wait() wait()}, {@link Object#wait(long) wait(long)}, or {@link
* Object#wait(long, int) wait(long, int)} methods of the {@link Object}
* class, or of the {@link #join()}, {@link #join(long)}, {@link
* #join(long, int)}, {@link #sleep(long)}, or {@link #sleep(long, int)},
* #join(long, int)}, {@link #sleep(long)}, or {@link #sleep(long, int)}
* methods of this class, then its interrupt status will be cleared and it
* will receive an {@link InterruptedException}.
*