@@ -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