Skip to content

Commit 4251229

Browse files
committed
DataHandle: make some minor style tweaks
1 parent d978412 commit 4251229

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main/java/org/scijava/io/handle/DataHandle.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -439,12 +439,13 @@ default int read() throws IOException {
439439
*
440440
* @return the total number of bytes read into the buffer.
441441
*/
442-
default int read(byte[] b) throws IOException {
442+
default int read(final byte[] b) throws IOException {
443443
return read(b, 0, b.length);
444444
}
445445

446446
/**
447-
* Reads up to len bytes of data from the stream into an array of bytes.
447+
* Reads up to {@code len} bytes of data from the stream into an array of
448+
* bytes.
448449
*
449450
* @return the total number of bytes read into the buffer.
450451
*/

0 commit comments

Comments
 (0)