From 7458afc32c319f2a0fefe0181256b67aad21a44c Mon Sep 17 00:00:00 2001 From: Michael Koch Date: Wed, 11 Jun 2003 14:58:21 +0000 Subject: 2003-06-11 Michael Koch * gnu/java/nio/FileChannelImpl.java: Imported import java.nio.MappedByteFileBuffer. (map_address): made public for now. * java/nio/MappedByteBuffer.java, java/nio/MappedByteFileBuffer.java, java/nio/MappedCharFileBuffer.java, java/nio/MappedDoubleFileBuffer.java, java/nio/MappedFloatFileBuffer.java, java/nio/MappedIntFileBuffer.java, java/nio/MappedLongFileBuffer.java, java/nio/MappedShortFileBuffer.java: Moved from gnu/java/nio. * gnu/java/nio/Makefile.am (EXTRA_DIST): Removed files. * java/nio/Makefile.am (EXTRA_DIST): Added new files. --- gnu/java/nio/FileChannelImpl.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gnu/java/nio/FileChannelImpl.java') diff --git a/gnu/java/nio/FileChannelImpl.java b/gnu/java/nio/FileChannelImpl.java index 0f443f6ff..356cbfbeb 100644 --- a/gnu/java/nio/FileChannelImpl.java +++ b/gnu/java/nio/FileChannelImpl.java @@ -45,6 +45,7 @@ import java.io.IOException; import java.io.RandomAccessFile; import java.nio.ByteBuffer; import java.nio.MappedByteBuffer; +import java.nio.MappedByteFileBuffer; import java.nio.channels.ClosedChannelException; import java.nio.channels.FileChannel; import java.nio.channels.FileLock; @@ -64,7 +65,8 @@ import gnu.classpath.RawData; public class FileChannelImpl extends FileChannel { - RawData map_address; + // FIXME: This should not be public + public RawData map_address; int length; FileDescriptor fd; -- cgit v1.2.1