Skip to content

Commit 63774d6

Browse files
author
duke
committedJan 28, 2022
Automatic merge of jdk:master into master
2 parents 1014a62 + d366d15 commit 63774d6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed
 

‎src/java.base/share/classes/java/nio/channels/FileChannel.java

+4-3
Original file line numberDiff line numberDiff line change
@@ -567,9 +567,10 @@ public final long write(ByteBuffer[] srcs) throws IOException {
567567
*
568568
* <p> This method is only guaranteed to force changes that were made to
569569
* this channel's file via the methods defined in this class, or the methods
570-
* defined by {@link FileOutputStream} or {@link RandomAccessFile} when the
571-
* channel was obtained with the {@code getChannel} method. It may or
572-
* may not force changes that were made by modifying the content of a
570+
* defined by {@link java.io.FileOutputStream} or
571+
* {@link java.io.RandomAccessFile} when the channel was obtained with the
572+
* {@code getChannel} method. It may or may not force changes that were made
573+
* by modifying the content of a
573574
* {@link MappedByteBuffer <i>mapped byte buffer</i>} obtained by
574575
* invoking the {@link #map map} method. Invoking the {@link
575576
* MappedByteBuffer#force force} method of the mapped byte buffer will

0 commit comments

Comments
 (0)
Please sign in to comment.