summaryrefslogtreecommitdiffstats
path: root/libjava/java/nio/IntBufferImpl.java
diff options
context:
space:
mode:
authormkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2004-04-20 14:54:37 +0000
committermkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2004-04-20 14:54:37 +0000
commita433cc20974591a2d8ec3ea57e7c72f2ec3af5df (patch)
treed537507404d80063e474451791d6e5fc6c41c099 /libjava/java/nio/IntBufferImpl.java
parentce97e13dedadf5635b96807626bc2d005b9022bc (diff)
downloadppe42-gcc-a433cc20974591a2d8ec3ea57e7c72f2ec3af5df.tar.gz
ppe42-gcc-a433cc20974591a2d8ec3ea57e7c72f2ec3af5df.zip
2004-04-20 Michael Koch <konqueror@gmx.de>
* java/nio/ByteBufferImpl.java, java/nio/CharBufferImpl.java, java/nio/DirectByteBufferImpl.java, java/nio/DoubleBufferImpl.java, java/nio/DoubleViewBufferImpl.java, java/nio/FloatBufferImpl.java, java/nio/FloatViewBufferImpl.java, java/nio/IntBufferImpl.java, java/nio/IntViewBufferImpl.java, java/nio/LongBufferImpl.java, java/nio/LongViewBufferImpl.java, java/nio/MappedByteBufferImpl.java, java/nio/ShortBufferImpl.java, java/nio/ShortViewBufferImpl.java: Made sure all classes are final and removed final keyword from all methods. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@80907 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/nio/IntBufferImpl.java')
-rw-r--r--libjava/java/nio/IntBufferImpl.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/libjava/java/nio/IntBufferImpl.java b/libjava/java/nio/IntBufferImpl.java
index f142827104a..a491c1105c4 100644
--- a/libjava/java/nio/IntBufferImpl.java
+++ b/libjava/java/nio/IntBufferImpl.java
@@ -100,7 +100,7 @@ final class IntBufferImpl extends IntBuffer
/**
* Relative get method. Reads the next <code>int</code> from the buffer.
*/
- final public int get ()
+ public int get ()
{
int result = backing_buffer [position ()];
position (position () + 1);
@@ -113,7 +113,7 @@ final class IntBufferImpl extends IntBuffer
*
* @exception ReadOnlyBufferException If this buffer is read-only.
*/
- final public IntBuffer put (int value)
+ public IntBuffer put (int value)
{
if (readOnly)
throw new ReadOnlyBufferException ();
@@ -130,7 +130,7 @@ final class IntBufferImpl extends IntBuffer
* @exception IndexOutOfBoundsException If index is negative or not smaller
* than the buffer's limit.
*/
- final public int get (int index)
+ public int get (int index)
{
return backing_buffer [index];
}
@@ -143,7 +143,7 @@ final class IntBufferImpl extends IntBuffer
* than the buffer's limit.
* @exception ReadOnlyBufferException If this buffer is read-only.
*/
- final public IntBuffer put (int index, int value)
+ public IntBuffer put (int index, int value)
{
if (readOnly)
throw new ReadOnlyBufferException ();
@@ -152,7 +152,7 @@ final class IntBufferImpl extends IntBuffer
return this;
}
- final public ByteOrder order ()
+ public ByteOrder order ()
{
return ByteOrder.nativeOrder ();
}
OpenPOWER on IntegriCloud