We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d978412 commit 4251229Copy full SHA for 4251229
src/main/java/org/scijava/io/handle/DataHandle.java
@@ -439,12 +439,13 @@ default int read() throws IOException {
439
*
440
* @return the total number of bytes read into the buffer.
441
*/
442
- default int read(byte[] b) throws IOException {
+ default int read(final byte[] b) throws IOException {
443
return read(b, 0, b.length);
444
}
445
446
/**
447
- * Reads up to len bytes of data from the stream into an array of bytes.
+ * Reads up to {@code len} bytes of data from the stream into an array of
448
+ * bytes.
449
450
451
0 commit comments