8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base

Minor coding style update of javadoc tag in any file in java.base

Reviewed-by: bchristi, lancea
This commit is contained in:
Julia Boes 2019-09-24 09:43:43 +01:00
parent 13d0bac294
commit d15a57b842
139 changed files with 3499 additions and 3499 deletions

View file

@ -26,12 +26,12 @@
package java.lang;
/**
* Thrown to indicate that the <code>clone</code> method in class
* <code>Object</code> has been called to clone an object, but that
* the object's class does not implement the <code>Cloneable</code>
* Thrown to indicate that the {@code clone} method in class
* {@code Object} has been called to clone an object, but that
* the object's class does not implement the {@code Cloneable}
* interface.
* <p>
* Applications that override the <code>clone</code> method can also
* Applications that override the {@code clone} method can also
* throw this exception to indicate that an object could not or
* should not be cloned.
*
@ -47,7 +47,7 @@ class CloneNotSupportedException extends Exception {
private static final long serialVersionUID = 5195511250079656443L;
/**
* Constructs a <code>CloneNotSupportedException</code> with no
* Constructs a {@code CloneNotSupportedException} with no
* detail message.
*/
public CloneNotSupportedException() {
@ -55,7 +55,7 @@ class CloneNotSupportedException extends Exception {
}
/**
* Constructs a <code>CloneNotSupportedException</code> with the
* Constructs a {@code CloneNotSupportedException} with the
* specified detail message.
*
* @param s the detail message.