mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
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:
parent
13d0bac294
commit
d15a57b842
139 changed files with 3499 additions and 3499 deletions
|
@ -45,19 +45,19 @@ public class FileNotFoundException extends IOException {
|
|||
private static final long serialVersionUID = -897856973823710492L;
|
||||
|
||||
/**
|
||||
* Constructs a <code>FileNotFoundException</code> with
|
||||
* <code>null</code> as its error detail message.
|
||||
* Constructs a {@code FileNotFoundException} with
|
||||
* {@code null} as its error detail message.
|
||||
*/
|
||||
public FileNotFoundException() {
|
||||
super();
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructs a <code>FileNotFoundException</code> with the
|
||||
* specified detail message. The string <code>s</code> can be
|
||||
* Constructs a {@code FileNotFoundException} with the
|
||||
* specified detail message. The string {@code s} can be
|
||||
* retrieved later by the
|
||||
* <code>{@link java.lang.Throwable#getMessage}</code>
|
||||
* method of class <code>java.lang.Throwable</code>.
|
||||
* method of class {@code java.lang.Throwable}.
|
||||
*
|
||||
* @param s the detail message.
|
||||
*/
|
||||
|
@ -66,9 +66,9 @@ public class FileNotFoundException extends IOException {
|
|||
}
|
||||
|
||||
/**
|
||||
* Constructs a <code>FileNotFoundException</code> with a detail message
|
||||
* Constructs a {@code FileNotFoundException} with a detail message
|
||||
* consisting of the given pathname string followed by the given reason
|
||||
* string. If the <code>reason</code> argument is <code>null</code> then
|
||||
* string. If the {@code reason} argument is {@code null} then
|
||||
* it will be omitted. This private constructor is invoked only by native
|
||||
* I/O methods.
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue