8067127: Tags cleanup

Reviewed-by: rriggs, dfuchs, lancea
This commit is contained in:
Brian Burkhalter 2020-10-07 17:16:04 +00:00
parent 739347f093
commit db3053dcd1
13 changed files with 37 additions and 37 deletions

View file

@ -692,7 +692,7 @@ public class RandomAccessFile implements DataOutput, DataInput, Closeable {
* Reads a signed eight-bit value from this file. This method reads a
* byte from the file, starting from the current file pointer.
* If the byte read is {@code b}, where
* <code>0&nbsp;&lt;=&nbsp;b&nbsp;&lt;=&nbsp;255</code>,
* {@code 0 <= b <= 255},
* then the result is:
* <blockquote><pre>
* (byte)(b)
@ -766,7 +766,7 @@ public class RandomAccessFile implements DataOutput, DataInput, Closeable {
* two bytes from the file, starting at the current file pointer.
* If the bytes read, in order, are
* {@code b1} and {@code b2}, where
* <code>0&nbsp;&lt;=&nbsp;b1, b2&nbsp;&lt;=&nbsp;255</code>,
* {@code 0 <= b1, b2 <= 255},
* then the result is equal to:
* <blockquote><pre>
* (b1 &lt;&lt; 8) | b2
@ -794,7 +794,7 @@ public class RandomAccessFile implements DataOutput, DataInput, Closeable {
* bytes from the file, starting at the current file pointer.
* If the bytes read, in order, are
* {@code b1} and {@code b2}, where
* <code>0&nbsp;&lt;=&nbsp;b1,&nbsp;b2&nbsp;&lt;=&nbsp;255</code>,
* {@code 0 <= b1, b2 <= 255},
* then the result is equal to:
* <blockquote><pre>
* (char)((b1 &lt;&lt; 8) | b2)
@ -822,7 +822,7 @@ public class RandomAccessFile implements DataOutput, DataInput, Closeable {
* bytes from the file, starting at the current file pointer.
* If the bytes read, in order, are {@code b1},
* {@code b2}, {@code b3}, and {@code b4}, where
* <code>0&nbsp;&lt;=&nbsp;b1, b2, b3, b4&nbsp;&lt;=&nbsp;255</code>,
* {@code 0 <= b1, b2, b3, b4 <= 255},
* then the result is equal to:
* <blockquote><pre>
* (b1 &lt;&lt; 24) | (b2 &lt;&lt; 16) + (b3 &lt;&lt; 8) + b4