mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8067127: Tags cleanup
Reviewed-by: rriggs, dfuchs, lancea
This commit is contained in:
parent
739347f093
commit
db3053dcd1
13 changed files with 37 additions and 37 deletions
|
@ -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 <= b <= 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 <= b1, b2 <= 255</code>,
|
||||
* {@code 0 <= b1, b2 <= 255},
|
||||
* then the result is equal to:
|
||||
* <blockquote><pre>
|
||||
* (b1 << 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 <= b1, b2 <= 255</code>,
|
||||
* {@code 0 <= b1, b2 <= 255},
|
||||
* then the result is equal to:
|
||||
* <blockquote><pre>
|
||||
* (char)((b1 << 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 <= b1, b2, b3, b4 <= 255</code>,
|
||||
* {@code 0 <= b1, b2, b3, b4 <= 255},
|
||||
* then the result is equal to:
|
||||
* <blockquote><pre>
|
||||
* (b1 << 24) | (b2 << 16) + (b3 << 8) + b4
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue