8247959: doclint errors in NIO code

Reviewed-by: alanb, lancea
This commit is contained in:
Jonathan Gibbons 2020-06-22 09:29:16 -07:00
parent 61e44cdb6a
commit 9a120e7f79
2 changed files with 4 additions and 2 deletions

View File

@ -25,6 +25,8 @@
package jdk.nio.mapmode;
import java.nio.MappedByteBuffer;
import java.nio.channels.FileChannel;
import java.nio.channels.FileChannel.MapMode;
/**
@ -52,7 +54,7 @@ public class ExtendedMapMode {
/**
* File mapping mode for a read-write mapping of a file backed by
* non-volatile RAM. {@linkplain MappedByteBufefr#force force}
* non-volatile RAM. {@linkplain MappedByteBuffer#force force}
* operations on a buffer created with this mode will be performed
* using cache line writeback rather than proceeding via a file
* device flush.

View File

@ -45,7 +45,7 @@ package com.sun.nio.sctp;
* this handler interface as the type for parameters, return type, etc. rather
* than the abstract class.
*
* @param T The type of the object attached to the receive operation
* @param <T> The type of the object attached to the receive operation
*
* @since 1.7
*/