mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8314738: Remove all occurrences of and support for @revised
Reviewed-by: mr
This commit is contained in:
parent
6b9df037e4
commit
f39fc0aa2d
28 changed files with 8 additions and 124 deletions
|
@ -1693,8 +1693,6 @@ public class Thread implements Runnable {
|
|||
*
|
||||
* @throws SecurityException
|
||||
* if the current thread cannot modify this thread
|
||||
*
|
||||
* @revised 6.0, 14
|
||||
*/
|
||||
public void interrupt() {
|
||||
if (this != Thread.currentThread()) {
|
||||
|
@ -1726,7 +1724,6 @@ public class Thread implements Runnable {
|
|||
* @return {@code true} if the current thread has been interrupted;
|
||||
* {@code false} otherwise.
|
||||
* @see #isInterrupted()
|
||||
* @revised 6.0, 14
|
||||
*/
|
||||
public static boolean interrupted() {
|
||||
return currentThread().getAndClearInterrupt();
|
||||
|
@ -1739,7 +1736,6 @@ public class Thread implements Runnable {
|
|||
* @return {@code true} if this thread has been interrupted;
|
||||
* {@code false} otherwise.
|
||||
* @see #interrupted()
|
||||
* @revised 6.0, 14
|
||||
*/
|
||||
public boolean isInterrupted() {
|
||||
return interrupted;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue