diff options
Diffstat (limited to 'libjava/classpath/java/nio/MappedByteBuffer.java')
-rw-r--r-- | libjava/classpath/java/nio/MappedByteBuffer.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libjava/classpath/java/nio/MappedByteBuffer.java b/libjava/classpath/java/nio/MappedByteBuffer.java index 1f82f82..f71e630 100644 --- a/libjava/classpath/java/nio/MappedByteBuffer.java +++ b/libjava/classpath/java/nio/MappedByteBuffer.java @@ -1,4 +1,4 @@ -/* MappedByteBuffer.java -- +/* MappedByteBuffer.java -- Copyright (C) 2002, 2004 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -48,11 +48,11 @@ import gnu.gcj.RawData; public abstract class MappedByteBuffer extends ByteBuffer { MappedByteBuffer (int capacity, int limit, int position, int mark, - RawData address) + RawData address) { super (capacity, limit, position, mark, address, null, 0); } - + void forceImpl() { } @@ -62,7 +62,7 @@ public abstract class MappedByteBuffer extends ByteBuffer forceImpl(); return this; } - + boolean isLoadedImpl() { load(); @@ -73,7 +73,7 @@ public abstract class MappedByteBuffer extends ByteBuffer { return isLoadedImpl(); } - + void loadImpl() { } |