--- old/src/share/classes/java/nio/channels/FileChannel.java Fri Aug 21 12:21:53 2009 +++ new/src/share/classes/java/nio/channels/FileChannel.java Fri Aug 21 12:21:51 2009 @@ -39,8 +39,7 @@ /** * A channel for reading, writing, mapping, and manipulating a file. * - *

{@note revised} - * A file channel is a {@link SeekableByteChannel} that is connected to + *

A file channel is a {@link SeekableByteChannel} that is connected to * a file. It has a current position within its file which can * be both {@link #position() queried} and {@link #position(long) * modified}. The file itself contains a variable-length sequence @@ -151,7 +150,6 @@ * @author Mike McCloskey * @author JSR-51 Expert Group * @since 1.4 - * @updated 1.7 */ public abstract class FileChannel @@ -164,7 +162,6 @@ protected FileChannel() { } /** - * {@note new} * Opens or creates a file, returning a file channel to access the file. * *

The {@code options} parameter determines how the file is opened. @@ -293,7 +290,6 @@ private static final FileAttribute[] NO_ATTRIBUTES = new FileAttribute[0]; /** - * {@note new} * Opens or creates a file, returning a file channel to access the file. * *

An invocation of this method behaves in exactly the same way as the