2003-06-27 Michael Koch <konqueror@gmx.de>

* gnu/java/nio/FileChannelImpl.java
	(write): Removed.

From-SVN: r68572
This commit is contained in:
Michael Koch 2003-06-27 13:41:25 +00:00 committed by Michael Koch
parent 1226b900dc
commit c938cb682b
2 changed files with 5 additions and 6 deletions

View File

@ -1,3 +1,8 @@
2003-06-27 Michael Koch <konqueror@gmx.de>
* gnu/java/nio/FileChannelImpl.java
(write): Removed.
2003-06-27 Michael Koch <konqueror@gmx.de>
* java/nio/ByteBufferImpl.java

View File

@ -276,12 +276,6 @@ public class FileChannelImpl extends FileChannel
return ch.buf;
}
public long write (ByteBuffer[] srcs)
throws IOException
{
return write (srcs, 0, srcs.length);
}
/**
* msync with the disk
*/