Skip to content

Commit 9a120e7

Browse files
committedJun 22, 2020
8247959: doclint errors in NIO code
Reviewed-by: alanb, lancea
1 parent 61e44cd commit 9a120e7

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed
 

‎src/jdk.nio.mapmode/share/classes/jdk/nio/mapmode/ExtendedMapMode.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525

2626
package jdk.nio.mapmode;
2727

28+
import java.nio.MappedByteBuffer;
29+
import java.nio.channels.FileChannel;
2830
import java.nio.channels.FileChannel.MapMode;
2931

3032
/**
@@ -52,7 +54,7 @@ private ExtendedMapMode() { }
5254

5355
/**
5456
* File mapping mode for a read-write mapping of a file backed by
55-
* non-volatile RAM. {@linkplain MappedByteBufefr#force force}
57+
* non-volatile RAM. {@linkplain MappedByteBuffer#force force}
5658
* operations on a buffer created with this mode will be performed
5759
* using cache line writeback rather than proceeding via a file
5860
* device flush.

‎src/jdk.sctp/share/classes/com/sun/nio/sctp/NotificationHandler.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
* this handler interface as the type for parameters, return type, etc. rather
4646
* than the abstract class.
4747
*
48-
* @param T The type of the object attached to the receive operation
48+
* @param <T> The type of the object attached to the receive operation
4949
*
5050
* @since 1.7
5151
*/

0 commit comments

Comments
 (0)
Please sign in to comment.