Patch attached.
Regards,
Dave
David Gilbert wrote:
I committed this patch - JAPI points out that the method should be final:
2006-03-04 David Gilbert <[EMAIL PROTECTED]>
* javax/swing/text/GapContent.java
(getArray): Mark as final.
Regards,
Dave
Index: javax/swing/text/GapContent.java
===================================================================
RCS file: /sources/classpath/classpath/javax/swing/text/GapContent.java,v
retrieving revision 1.40
diff -u -r1.40 GapContent.java
--- javax/swing/text/GapContent.java 21 Feb 2006 11:29:18 -0000 1.40
+++ javax/swing/text/GapContent.java 4 Mar 2006 06:21:10 -0000
@@ -607,7 +607,7 @@
*
* @return the allocated buffer array
*/
- protected Object getArray()
+ protected final Object getArray()
{
return buffer;
}