8133188: docs: replace <tt> tags (obsolete in html5) for java.util

Reviewed-by: martin
This commit is contained in:
Alexander Stepanov 2015-08-11 20:46:46 +03:00
parent 784379f7a4
commit c683f90b9a
64 changed files with 2352 additions and 2347 deletions

View file

@ -102,7 +102,7 @@ public abstract class TimerTask implements Runnable {
* will never run again. (If the task is running when this call occurs,
* the task will run to completion, but will never run again.)
*
* <p>Note that calling this method from within the <tt>run</tt> method of
* <p>Note that calling this method from within the {@code run} method of
* a repeating timer task absolutely guarantees that the timer task will
* not run again.
*
@ -114,7 +114,7 @@ public abstract class TimerTask implements Runnable {
* Returns false if the task was scheduled for one-time execution
* and has already run, or if the task was never scheduled, or if
* the task was already cancelled. (Loosely speaking, this method
* returns <tt>true</tt> if it prevents one or more scheduled
* returns {@code true} if it prevents one or more scheduled
* executions from taking place.)
*/
public boolean cancel() {