diff options
Diffstat (limited to 'libjava/java/nio/CharBufferImpl.java')
-rw-r--r-- | libjava/java/nio/CharBufferImpl.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libjava/java/nio/CharBufferImpl.java b/libjava/java/nio/CharBufferImpl.java index aacc2cb..1a8dff1 100644 --- a/libjava/java/nio/CharBufferImpl.java +++ b/libjava/java/nio/CharBufferImpl.java @@ -104,7 +104,7 @@ final class CharBufferImpl extends CharBuffer return false; } - final public CharSequence subSequence (int start, int end) + public CharSequence subSequence (int start, int end) { if (start < 0 || start > length () @@ -118,7 +118,7 @@ final class CharBufferImpl extends CharBuffer /** * Relative get method. Reads the next <code>char</code> from the buffer. */ - final public char get () + public char get () { char result = backing_buffer [position ()]; position (position () + 1); @@ -131,7 +131,7 @@ final class CharBufferImpl extends CharBuffer * * @exception ReadOnlyBufferException If this buffer is read-only. */ - final public CharBuffer put (char value) + public CharBuffer put (char value) { if (readOnly) throw new ReadOnlyBufferException (); @@ -148,7 +148,7 @@ final class CharBufferImpl extends CharBuffer * @exception IndexOutOfBoundsException If index is negative or not smaller * than the buffer's limit. */ - final public char get (int index) + public char get (int index) { if (index < 0 || index >= limit ()) @@ -165,7 +165,7 @@ final class CharBufferImpl extends CharBuffer * than the buffer's limit. * @exception ReadOnlyBufferException If this buffer is read-only. */ - final public CharBuffer put (int index, char value) + public CharBuffer put (int index, char value) { if (index < 0 || index >= limit ()) @@ -178,7 +178,7 @@ final class CharBufferImpl extends CharBuffer return this; } - final public ByteOrder order () + public ByteOrder order () { return ByteOrder.nativeOrder (); } |