summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--gnu/java/nio/channels/FileChannelImpl.java5
2 files changed, 5 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index d08d9faa7..e59190180 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2004-04-23 Michael Koch <konqueror@gmx.de>
+ * gnu/java/nio/channels/FileChannelImpl.java
+ (SET, CUR): Unused, removed.
+
+2004-04-23 Michael Koch <konqueror@gmx.de>
+
* scripts/unicode-muncher.pl: Fixed typo.
2004-04-23 Michael Koch <konqueror@gmx.de>
diff --git a/gnu/java/nio/channels/FileChannelImpl.java b/gnu/java/nio/channels/FileChannelImpl.java
index 180b98da1..2aeadfc3f 100644
--- a/gnu/java/nio/channels/FileChannelImpl.java
+++ b/gnu/java/nio/channels/FileChannelImpl.java
@@ -60,13 +60,8 @@ import java.nio.channels.WritableByteChannel;
* Instances of this class are created by invoking getChannel
* Upon a Input/Output/RandomAccessFile object.
*/
-
public final class FileChannelImpl extends FileChannel
{
- // These are WHENCE values for seek.
-// public static final int SET = 0;
-// public static final int CUR = 1;
-
// These are mode values for open().
public static final int READ = 1;
public static final int WRITE = 2;