This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Patch: java.nio - final modifier
- From: Michael Koch <konqueror at gmx dot de>
- To: java-patches at gcc dot gnu dot org
- Date: Tue, 20 Apr 2004 16:55:22 +0200
- Subject: Patch: java.nio - final modifier
Hi list,
I just commited the attached patch to make sure all classes are final
and no method is explicitely marked final itself.
Michael
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.
Index: java/nio/ByteBufferImpl.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/nio/ByteBufferImpl.java,v
retrieving revision 1.6
diff -u -r1.6 ByteBufferImpl.java
--- java/nio/ByteBufferImpl.java 16 Feb 2004 20:00:33 -0000 1.6
+++ java/nio/ByteBufferImpl.java 20 Apr 2004 14:54:16 -0000
@@ -131,7 +131,7 @@
/**
* Relative get method. Reads the next <code>byte</code> from the buffer.
*/
- final public byte get ()
+ public byte get ()
{
byte result = backing_buffer [position () + array_offset];
position (position () + 1);
@@ -144,7 +144,7 @@
*
* @exception ReadOnlyBufferException If this buffer is read-only.
*/
- final public ByteBuffer put (byte value)
+ public ByteBuffer put (byte value)
{
if (readOnly)
throw new ReadOnlyBufferException ();
@@ -162,7 +162,7 @@
* @exception IndexOutOfBoundsException If index is negative or not smaller
* than the buffer's limit.
*/
- final public byte get (int index)
+ public byte get (int index)
{
return backing_buffer [index + array_offset];
}
@@ -175,7 +175,7 @@
* than the buffer's limit.
* @exception ReadOnlyBufferException If this buffer is read-only.
*/
- final public ByteBuffer put (int index, byte value)
+ public ByteBuffer put (int index, byte value)
{
if (readOnly)
throw new ReadOnlyBufferException ();
@@ -184,133 +184,133 @@
return this;
}
- final public char getChar ()
+ public char getChar ()
{
return ByteBufferHelper.getChar(this, order());
}
- final public ByteBuffer putChar (char value)
+ public ByteBuffer putChar (char value)
{
ByteBufferHelper.putChar(this, value, order());
return this;
}
- final public char getChar (int index)
+ public char getChar (int index)
{
return ByteBufferHelper.getChar(this, index, order());
}
- final public ByteBuffer putChar (int index, char value)
+ public ByteBuffer putChar (int index, char value)
{
ByteBufferHelper.putChar(this, index, value, order());
return this;
}
- final public short getShort ()
+ public short getShort ()
{
return ByteBufferHelper.getShort(this, order());
}
- final public ByteBuffer putShort (short value)
+ public ByteBuffer putShort (short value)
{
ByteBufferHelper.putShort(this, value, order());
return this;
}
- final public short getShort (int index)
+ public short getShort (int index)
{
return ByteBufferHelper.getShort(this, index, order());
}
- final public ByteBuffer putShort (int index, short value)
+ public ByteBuffer putShort (int index, short value)
{
ByteBufferHelper.putShort(this, index, value, order());
return this;
}
- final public int getInt ()
+ public int getInt ()
{
return ByteBufferHelper.getInt(this, order());
}
- final public ByteBuffer putInt (int value)
+ public ByteBuffer putInt (int value)
{
ByteBufferHelper.putInt(this, value, order());
return this;
}
- final public int getInt (int index)
+ public int getInt (int index)
{
return ByteBufferHelper.getInt(this, index, order());
}
- final public ByteBuffer putInt (int index, int value)
+ public ByteBuffer putInt (int index, int value)
{
ByteBufferHelper.putInt(this, index, value, order());
return this;
}
- final public long getLong ()
+ public long getLong ()
{
return ByteBufferHelper.getLong(this, order());
}
- final public ByteBuffer putLong (long value)
+ public ByteBuffer putLong (long value)
{
ByteBufferHelper.putLong (this, value, order());
return this;
}
- final public long getLong (int index)
+ public long getLong (int index)
{
return ByteBufferHelper.getLong (this, index, order());
}
- final public ByteBuffer putLong (int index, long value)
+ public ByteBuffer putLong (int index, long value)
{
ByteBufferHelper.putLong (this, index, value, order());
return this;
}
- final public float getFloat ()
+ public float getFloat ()
{
return ByteBufferHelper.getFloat (this, order());
}
- final public ByteBuffer putFloat (float value)
+ public ByteBuffer putFloat (float value)
{
ByteBufferHelper.putFloat (this, value, order());
return this;
}
- public final float getFloat (int index)
+ public float getFloat (int index)
{
return ByteBufferHelper.getFloat (this, index, order());
}
- final public ByteBuffer putFloat (int index, float value)
+ public ByteBuffer putFloat (int index, float value)
{
ByteBufferHelper.putFloat (this, index, value, order());
return this;
}
- final public double getDouble ()
+ public double getDouble ()
{
return ByteBufferHelper.getDouble (this, order());
}
- final public ByteBuffer putDouble (double value)
+ public ByteBuffer putDouble (double value)
{
ByteBufferHelper.putDouble (this, value, order());
return this;
}
- final public double getDouble (int index)
+ public double getDouble (int index)
{
return ByteBufferHelper.getDouble (this, index, order());
}
- final public ByteBuffer putDouble (int index, double value)
+ public ByteBuffer putDouble (int index, double value)
{
ByteBufferHelper.putDouble (this, index, value, order());
return this;
Index: java/nio/CharBufferImpl.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/nio/CharBufferImpl.java,v
retrieving revision 1.3
diff -u -r1.3 CharBufferImpl.java
--- java/nio/CharBufferImpl.java 16 Feb 2004 19:53:26 -0000 1.3
+++ java/nio/CharBufferImpl.java 20 Apr 2004 14:54:16 -0000
@@ -104,7 +104,7 @@
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 @@
/**
* 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 @@
*
* @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 @@
* @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 @@
* 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 @@
return this;
}
- final public ByteOrder order ()
+ public ByteOrder order ()
{
return ByteOrder.nativeOrder ();
}
Index: java/nio/DirectByteBufferImpl.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/nio/DirectByteBufferImpl.java,v
retrieving revision 1.8
diff -u -r1.8 DirectByteBufferImpl.java
--- java/nio/DirectByteBufferImpl.java 16 Feb 2004 20:00:33 -0000 1.8
+++ java/nio/DirectByteBufferImpl.java 20 Apr 2004 14:54:16 -0000
@@ -41,7 +41,7 @@
import gnu.classpath.Configuration;
import gnu.gcj.RawData;
-class DirectByteBufferImpl extends ByteBuffer
+final class DirectByteBufferImpl extends ByteBuffer
{
static
{
@@ -229,133 +229,133 @@
return new DoubleViewBufferImpl (this, remaining() >> 3);
}
- final public char getChar ()
+ public char getChar ()
{
return ByteBufferHelper.getChar(this, order());
}
- final public ByteBuffer putChar (char value)
+ public ByteBuffer putChar (char value)
{
ByteBufferHelper.putChar(this, value, order());
return this;
}
- final public char getChar (int index)
+ public char getChar (int index)
{
return ByteBufferHelper.getChar(this, index, order());
}
- final public ByteBuffer putChar (int index, char value)
+ public ByteBuffer putChar (int index, char value)
{
ByteBufferHelper.putChar(this, index, value, order());
return this;
}
- final public short getShort ()
+ public short getShort ()
{
return ByteBufferHelper.getShort(this, order());
}
- final public ByteBuffer putShort (short value)
+ public ByteBuffer putShort (short value)
{
ByteBufferHelper.putShort(this, value, order());
return this;
}
- final public short getShort (int index)
+ public short getShort (int index)
{
return ByteBufferHelper.getShort(this, index, order());
}
- final public ByteBuffer putShort (int index, short value)
+ public ByteBuffer putShort (int index, short value)
{
ByteBufferHelper.putShort(this, index, value, order());
return this;
}
- final public int getInt ()
+ public int getInt ()
{
return ByteBufferHelper.getInt(this, order());
}
- final public ByteBuffer putInt (int value)
+ public ByteBuffer putInt (int value)
{
ByteBufferHelper.putInt(this, value, order());
return this;
}
- final public int getInt (int index)
+ public int getInt (int index)
{
return ByteBufferHelper.getInt(this, index, order());
}
- final public ByteBuffer putInt (int index, int value)
+ public ByteBuffer putInt (int index, int value)
{
ByteBufferHelper.putInt(this, index, value, order());
return this;
}
- final public long getLong ()
+ public long getLong ()
{
return ByteBufferHelper.getLong(this, order());
}
- final public ByteBuffer putLong (long value)
+ public ByteBuffer putLong (long value)
{
ByteBufferHelper.putLong (this, value, order());
return this;
}
- final public long getLong (int index)
+ public long getLong (int index)
{
return ByteBufferHelper.getLong (this, index, order());
}
- final public ByteBuffer putLong (int index, long value)
+ public ByteBuffer putLong (int index, long value)
{
ByteBufferHelper.putLong (this, index, value, order());
return this;
}
- final public float getFloat ()
+ public float getFloat ()
{
return ByteBufferHelper.getFloat (this, order());
}
- final public ByteBuffer putFloat (float value)
+ public ByteBuffer putFloat (float value)
{
ByteBufferHelper.putFloat (this, value, order());
return this;
}
- public final float getFloat (int index)
+ public float getFloat (int index)
{
return ByteBufferHelper.getFloat (this, index, order());
}
- final public ByteBuffer putFloat (int index, float value)
+ public ByteBuffer putFloat (int index, float value)
{
ByteBufferHelper.putFloat (this, index, value, order());
return this;
}
- final public double getDouble ()
+ public double getDouble ()
{
return ByteBufferHelper.getDouble (this, order());
}
- final public ByteBuffer putDouble (double value)
+ public ByteBuffer putDouble (double value)
{
ByteBufferHelper.putDouble (this, value, order());
return this;
}
- final public double getDouble (int index)
+ public double getDouble (int index)
{
return ByteBufferHelper.getDouble (this, index, order());
}
- final public ByteBuffer putDouble (int index, double value)
+ public ByteBuffer putDouble (int index, double value)
{
ByteBufferHelper.putDouble (this, index, value, order());
return this;
Index: java/nio/DoubleBufferImpl.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/nio/DoubleBufferImpl.java,v
retrieving revision 1.3
diff -u -r1.3 DoubleBufferImpl.java
--- java/nio/DoubleBufferImpl.java 16 Feb 2004 19:53:26 -0000 1.3
+++ java/nio/DoubleBufferImpl.java 20 Apr 2004 14:54:16 -0000
@@ -100,7 +100,7 @@
/**
* Relative get method. Reads the next <code>double</code> from the buffer.
*/
- final public double get ()
+ public double get ()
{
double result = backing_buffer [position ()];
position (position () + 1);
@@ -113,7 +113,7 @@
*
* @exception ReadOnlyBufferException If this buffer is read-only.
*/
- final public DoubleBuffer put (double value)
+ public DoubleBuffer put (double value)
{
if (readOnly)
throw new ReadOnlyBufferException ();
@@ -130,7 +130,7 @@
* @exception IndexOutOfBoundsException If index is negative or not smaller
* than the buffer's limit.
*/
- final public double get (int index)
+ public double get (int index)
{
return backing_buffer [index];
}
@@ -143,7 +143,7 @@
* than the buffer's limit.
* @exception ReadOnlyBufferException If this buffer is read-only.
*/
- final public DoubleBuffer put (int index, double value)
+ public DoubleBuffer put (int index, double value)
{
if (readOnly)
throw new ReadOnlyBufferException ();
@@ -152,7 +152,7 @@
return this;
}
- final public ByteOrder order ()
+ public ByteOrder order ()
{
return ByteOrder.nativeOrder ();
}
Index: java/nio/DoubleViewBufferImpl.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/nio/DoubleViewBufferImpl.java,v
retrieving revision 1.3
diff -u -r1.3 DoubleViewBufferImpl.java
--- java/nio/DoubleViewBufferImpl.java 16 Feb 2004 19:54:49 -0000 1.3
+++ java/nio/DoubleViewBufferImpl.java 20 Apr 2004 14:54:16 -0000
@@ -38,7 +38,7 @@
package java.nio;
-class DoubleViewBufferImpl extends DoubleBuffer
+final class DoubleViewBufferImpl extends DoubleBuffer
{
/** Position in bb (i.e. a byte offset) where this buffer starts. */
private int offset;
Index: java/nio/FloatBufferImpl.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/nio/FloatBufferImpl.java,v
retrieving revision 1.3
diff -u -r1.3 FloatBufferImpl.java
--- java/nio/FloatBufferImpl.java 16 Feb 2004 19:53:26 -0000 1.3
+++ java/nio/FloatBufferImpl.java 20 Apr 2004 14:54:16 -0000
@@ -100,7 +100,7 @@
/**
* Relative get method. Reads the next <code>float</code> from the buffer.
*/
- final public float get ()
+ public float get ()
{
float result = backing_buffer [position ()];
position (position () + 1);
@@ -113,7 +113,7 @@
*
* @exception ReadOnlyBufferException If this buffer is read-only.
*/
- final public FloatBuffer put (float value)
+ public FloatBuffer put (float value)
{
if (readOnly)
throw new ReadOnlyBufferException ();
@@ -130,7 +130,7 @@
* @exception IndexOutOfBoundsException If index is negative or not smaller
* than the buffer's limit.
*/
- final public float get (int index)
+ public float get (int index)
{
return backing_buffer [index];
}
@@ -143,7 +143,7 @@
* than the buffer's limit.
* @exception ReadOnlyBufferException If this buffer is read-only.
*/
- final public FloatBuffer put (int index, float value)
+ public FloatBuffer put (int index, float value)
{
if (readOnly)
throw new ReadOnlyBufferException ();
@@ -152,7 +152,7 @@
return this;
}
- final public ByteOrder order ()
+ public ByteOrder order ()
{
return ByteOrder.nativeOrder ();
}
Index: java/nio/FloatViewBufferImpl.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/nio/FloatViewBufferImpl.java,v
retrieving revision 1.3
diff -u -r1.3 FloatViewBufferImpl.java
--- java/nio/FloatViewBufferImpl.java 16 Feb 2004 19:54:49 -0000 1.3
+++ java/nio/FloatViewBufferImpl.java 20 Apr 2004 14:54:16 -0000
@@ -38,7 +38,7 @@
package java.nio;
-class FloatViewBufferImpl extends FloatBuffer
+final class FloatViewBufferImpl extends FloatBuffer
{
/** Position in bb (i.e. a byte offset) where this buffer starts. */
private int offset;
Index: java/nio/IntBufferImpl.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/nio/IntBufferImpl.java,v
retrieving revision 1.3
diff -u -r1.3 IntBufferImpl.java
--- java/nio/IntBufferImpl.java 16 Feb 2004 19:53:26 -0000 1.3
+++ java/nio/IntBufferImpl.java 20 Apr 2004 14:54:16 -0000
@@ -100,7 +100,7 @@
/**
* 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 @@
*
* @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 @@
* @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 @@
* 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 @@
return this;
}
- final public ByteOrder order ()
+ public ByteOrder order ()
{
return ByteOrder.nativeOrder ();
}
Index: java/nio/IntViewBufferImpl.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/nio/IntViewBufferImpl.java,v
retrieving revision 1.3
diff -u -r1.3 IntViewBufferImpl.java
--- java/nio/IntViewBufferImpl.java 16 Feb 2004 19:54:49 -0000 1.3
+++ java/nio/IntViewBufferImpl.java 20 Apr 2004 14:54:16 -0000
@@ -38,7 +38,7 @@
package java.nio;
-class IntViewBufferImpl extends IntBuffer
+final class IntViewBufferImpl extends IntBuffer
{
/** Position in bb (i.e. a byte offset) where this buffer starts. */
private int offset;
Index: java/nio/LongBufferImpl.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/nio/LongBufferImpl.java,v
retrieving revision 1.3
diff -u -r1.3 LongBufferImpl.java
--- java/nio/LongBufferImpl.java 16 Feb 2004 19:53:26 -0000 1.3
+++ java/nio/LongBufferImpl.java 20 Apr 2004 14:54:16 -0000
@@ -100,7 +100,7 @@
/**
* Relative get method. Reads the next <code>long</code> from the buffer.
*/
- final public long get ()
+ public long get ()
{
long result = backing_buffer [position ()];
position (position () + 1);
@@ -113,7 +113,7 @@
*
* @exception ReadOnlyBufferException If this buffer is read-only.
*/
- final public LongBuffer put (long value)
+ public LongBuffer put (long value)
{
if (readOnly)
throw new ReadOnlyBufferException ();
@@ -130,7 +130,7 @@
* @exception IndexOutOfBoundsException If index is negative or not smaller
* than the buffer's limit.
*/
- final public long get (int index)
+ public long get (int index)
{
return backing_buffer [index];
}
@@ -143,7 +143,7 @@
* than the buffer's limit.
* @exception ReadOnlyBufferException If this buffer is read-only.
*/
- final public LongBuffer put (int index, long value)
+ public LongBuffer put (int index, long value)
{
if (readOnly)
throw new ReadOnlyBufferException ();
@@ -152,7 +152,7 @@
return this;
}
- final public ByteOrder order ()
+ public ByteOrder order ()
{
return ByteOrder.nativeOrder ();
}
Index: java/nio/LongViewBufferImpl.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/nio/LongViewBufferImpl.java,v
retrieving revision 1.3
diff -u -r1.3 LongViewBufferImpl.java
--- java/nio/LongViewBufferImpl.java 16 Feb 2004 19:54:49 -0000 1.3
+++ java/nio/LongViewBufferImpl.java 20 Apr 2004 14:54:16 -0000
@@ -38,7 +38,7 @@
package java.nio;
-class LongViewBufferImpl extends LongBuffer
+final class LongViewBufferImpl extends LongBuffer
{
/** Position in bb (i.e. a byte offset) where this buffer starts. */
private int offset;
Index: java/nio/MappedByteBufferImpl.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/nio/MappedByteBufferImpl.java,v
retrieving revision 1.7
diff -u -r1.7 MappedByteBufferImpl.java
--- java/nio/MappedByteBufferImpl.java 29 Feb 2004 19:12:45 -0000 1.7
+++ java/nio/MappedByteBufferImpl.java 20 Apr 2004 14:54:16 -0000
@@ -39,10 +39,9 @@
package java.nio;
import java.io.IOException;
-import gnu.java.nio.channels.FileChannelImpl;
import gnu.gcj.RawData;
-class MappedByteBufferImpl extends MappedByteBuffer
+final class MappedByteBufferImpl extends MappedByteBuffer
{
boolean readOnly;
RawData address;
@@ -201,133 +200,133 @@
return new DoubleViewBufferImpl (this, remaining() >> 3);
}
- final public char getChar ()
+ public char getChar ()
{
return ByteBufferHelper.getChar(this, order());
}
- final public ByteBuffer putChar (char value)
+ public ByteBuffer putChar (char value)
{
ByteBufferHelper.putChar(this, value, order());
return this;
}
- final public char getChar (int index)
+ public char getChar (int index)
{
return ByteBufferHelper.getChar(this, index, order());
}
- final public ByteBuffer putChar (int index, char value)
+ public ByteBuffer putChar (int index, char value)
{
ByteBufferHelper.putChar(this, index, value, order());
return this;
}
- final public short getShort ()
+ public short getShort ()
{
return ByteBufferHelper.getShort(this, order());
}
- final public ByteBuffer putShort (short value)
+ public ByteBuffer putShort (short value)
{
ByteBufferHelper.putShort(this, value, order());
return this;
}
- final public short getShort (int index)
+ public short getShort (int index)
{
return ByteBufferHelper.getShort(this, index, order());
}
- final public ByteBuffer putShort (int index, short value)
+ public ByteBuffer putShort (int index, short value)
{
ByteBufferHelper.putShort(this, index, value, order());
return this;
}
- final public int getInt ()
+ public int getInt ()
{
return ByteBufferHelper.getInt(this, order());
}
- final public ByteBuffer putInt (int value)
+ public ByteBuffer putInt (int value)
{
ByteBufferHelper.putInt(this, value, order());
return this;
}
- final public int getInt (int index)
+ public int getInt (int index)
{
return ByteBufferHelper.getInt(this, index, order());
}
- final public ByteBuffer putInt (int index, int value)
+ public ByteBuffer putInt (int index, int value)
{
ByteBufferHelper.putInt(this, index, value, order());
return this;
}
- final public long getLong ()
+ public long getLong ()
{
return ByteBufferHelper.getLong(this, order());
}
- final public ByteBuffer putLong (long value)
+ public ByteBuffer putLong (long value)
{
ByteBufferHelper.putLong (this, value, order());
return this;
}
- final public long getLong (int index)
+ public long getLong (int index)
{
return ByteBufferHelper.getLong (this, index, order());
}
- final public ByteBuffer putLong (int index, long value)
+ public ByteBuffer putLong (int index, long value)
{
ByteBufferHelper.putLong (this, index, value, order());
return this;
}
- final public float getFloat ()
+ public float getFloat ()
{
return ByteBufferHelper.getFloat (this, order());
}
- final public ByteBuffer putFloat (float value)
+ public ByteBuffer putFloat (float value)
{
ByteBufferHelper.putFloat (this, value, order());
return this;
}
- public final float getFloat (int index)
+ public float getFloat (int index)
{
return ByteBufferHelper.getFloat (this, index, order());
}
- final public ByteBuffer putFloat (int index, float value)
+ public ByteBuffer putFloat (int index, float value)
{
ByteBufferHelper.putFloat (this, index, value, order());
return this;
}
- final public double getDouble ()
+ public double getDouble ()
{
return ByteBufferHelper.getDouble (this, order());
}
- final public ByteBuffer putDouble (double value)
+ public ByteBuffer putDouble (double value)
{
ByteBufferHelper.putDouble (this, value, order());
return this;
}
- final public double getDouble (int index)
+ public double getDouble (int index)
{
return ByteBufferHelper.getDouble (this, index, order());
}
- final public ByteBuffer putDouble (int index, double value)
+ public ByteBuffer putDouble (int index, double value)
{
ByteBufferHelper.putDouble (this, index, value, order());
return this;
Index: java/nio/ShortBufferImpl.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/nio/ShortBufferImpl.java,v
retrieving revision 1.3
diff -u -r1.3 ShortBufferImpl.java
--- java/nio/ShortBufferImpl.java 16 Feb 2004 19:53:26 -0000 1.3
+++ java/nio/ShortBufferImpl.java 20 Apr 2004 14:54:16 -0000
@@ -100,7 +100,7 @@
/**
* Relative get method. Reads the next <code>short</code> from the buffer.
*/
- final public short get ()
+ public short get ()
{
short result = backing_buffer [position ()];
position (position () + 1);
@@ -113,7 +113,7 @@
*
* @exception ReadOnlyBufferException If this buffer is read-only.
*/
- final public ShortBuffer put (short value)
+ public ShortBuffer put (short value)
{
if (readOnly)
throw new ReadOnlyBufferException ();
@@ -130,7 +130,7 @@
* @exception IndexOutOfBoundsException If index is negative or not smaller
* than the buffer's limit.
*/
- final public short get (int index)
+ public short get (int index)
{
return backing_buffer [index];
}
@@ -143,7 +143,7 @@
* than the buffer's limit.
* @exception ReadOnlyBufferException If this buffer is read-only.
*/
- final public ShortBuffer put (int index, short value)
+ public ShortBuffer put (int index, short value)
{
if (readOnly)
throw new ReadOnlyBufferException ();
@@ -152,7 +152,7 @@
return this;
}
- final public ByteOrder order ()
+ public ByteOrder order ()
{
return ByteOrder.nativeOrder ();
}
Index: java/nio/ShortViewBufferImpl.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/nio/ShortViewBufferImpl.java,v
retrieving revision 1.3
diff -u -r1.3 ShortViewBufferImpl.java
--- java/nio/ShortViewBufferImpl.java 16 Feb 2004 19:54:49 -0000 1.3
+++ java/nio/ShortViewBufferImpl.java 20 Apr 2004 14:54:16 -0000
@@ -38,7 +38,7 @@
package java.nio;
-class ShortViewBufferImpl extends ShortBuffer
+final class ShortViewBufferImpl extends ShortBuffer
{
/** Position in bb (i.e. a byte offset) where this buffer starts. */
private int offset;