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

@ -58,8 +58,8 @@ public class PipedReader extends Reader {
/**
* The index of the position in the circular buffer at which the
* next character of data will be stored when received from the connected
* piped writer. <code>in&lt;0</code> implies the buffer is empty,
* {@code in==out} implies the buffer is full
* piped writer. {@code in < 0} implies the buffer is empty,
* {@code in == out} implies the buffer is full
*/
int in = -1;