Re: RFR: 8156593: DataOutput.write(byte[],int,int) and its implementations do not specify index out bounds [v2]

2022-10-28 Thread Andrey Turbanov
On Fri, 28 Oct 2022 15:18:06 GMT, Brian Burkhalter wrote: >> Add `@throws IndexOutOfBoundsException {@inheritDoc}` to some >> `write(byte[],int,int)` and `read(byte[],int,int)` methods of some classes >> in the `java.io` package to make things a bit clearer. > > Brian Burkhalter has updated

Re: RFR: 8156593: DataOutput.write(byte[],int,int) and its implementations do not specify index out bounds [v2]

2022-10-28 Thread Alan Bateman
On Fri, 28 Oct 2022 15:18:06 GMT, Brian Burkhalter wrote: >> Add `@throws IndexOutOfBoundsException {@inheritDoc}` to some >> `write(byte[],int,int)` and `read(byte[],int,int)` methods of some classes >> in the `java.io` package to make things a bit clearer. > > Brian Burkhalter has updated

Re: RFR: 8156593: DataOutput.write(byte[],int,int) and its implementations do not specify index out bounds [v2]

2022-10-28 Thread Brian Burkhalter
On Fri, 28 Oct 2022 06:09:49 GMT, Andrey Turbanov wrote: >> Brian Burkhalter has updated the pull request incrementally with one >> additional commit since the last revision: >> >> 8156593: Fix accidental edit > > src/java.base/share/classes/java/io/FileOutputStream.java line 346: > >> 344:

Re: RFR: 8156593: DataOutput.write(byte[],int,int) and its implementations do not specify index out bounds [v2]

2022-10-28 Thread Brian Burkhalter
> Add `@throws IndexOutOfBoundsException {@inheritDoc}` to some > `write(byte[],int,int)` and `read(byte[],int,int)` methods of some classes in > the `java.io` package to make things a bit clearer. Brian Burkhalter has updated the pull request incrementally with one additional commit since the

Re: RFR: 8156593: DataOutput.write(byte[],int,int) and its implementations do not specify index out bounds

2022-10-28 Thread Andrey Turbanov
On Thu, 27 Oct 2022 20:35:26 GMT, Brian Burkhalter wrote: > Add `@throws IndexOutOfBoundsException {@inheritDoc}` to some > `write(byte[],int,int)` and `read(byte[],int,int)` methods of some classes in > the `java.io` package to make things a bit clearer.

RFR: 8156593: DataOutput.write(byte[], int, int) and its implementations do not specify index out bounds

2022-10-27 Thread Brian Burkhalter
Add `@throws IndexOutOfBoundsException {@inheritDoc}` to some `write(byte[],int,int)` and `read(byte[],int,int)` methods of some classes in the `java.io` package to make things a bit clearer. - Commit messages: - 8156593: DataOutput.write(byte[],int,int) and its implementations do