Skip to content

Commit 746b74f

Browse files
committed
DataHandleTest: fix javadoc
1 parent 1d5a14c commit 746b74f

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

src/test/java/org/scijava/io/handle/DataHandleTest.java

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -438,13 +438,10 @@ public <L extends Location> void checkAdvancedStringWriting(
438438
/**
439439
* Checks writing methods affected by endianness.
440440
*
441-
* @param readHandleCreator a supplier that creates properly initialized
442-
* handles for reading, all created handles must point to the same
443-
* location!
444-
* @param writeHandleCreator a supplier that creates properly initialized
445-
* handles for reading, all created handles must point to the same
441+
* @param handleCreator a supplier that creates properly initialized
442+
* handles. All created handles must point to the same
446443
* location!
447-
* @throws IOException
444+
* @param order Byte order to use when writing to the handles.
448445
*/
449446
public <L extends Location> void checkWriteEndianes(
450447
final Supplier<DataHandle<L>> handleCreator, final ByteOrder order)
@@ -453,6 +450,18 @@ public <L extends Location> void checkWriteEndianes(
453450
checkWriteEndianes(handleCreator, handleCreator, order);
454451
}
455452

453+
/**
454+
* Checks writing methods affected by endianness.
455+
*
456+
* @param readHandleCreator a supplier that creates properly initialized
457+
* handles for reading. All created handles must point to the same
458+
* location!
459+
* @param writeHandleCreator a supplier that creates properly initialized
460+
* handles for writing. All created handles must point to the same
461+
* location!
462+
* @param order Byte order to use when writing to the handles.
463+
* @throws IOException
464+
*/
456465
public <L extends Location> void checkWriteEndianes(
457466
final Supplier<DataHandle<L>> readHandleCreator,
458467
final Supplier<DataHandle<L>> writeHandleCreator, final ByteOrder order)

0 commit comments

Comments
 (0)