In a previous patch, I added a paramString() method override to JList, but made it
public instead of protected - JAPI caught this. Fixed by this patch (committed):
2006-04-29 David Gilbert <[EMAIL PROTECTED]>
* javax/swing/JList.java
(paramString): Changed from public to protected.
Regards,
Dave
Index: javax/swing/JList.java
===================================================================
RCS file: /sources/classpath/classpath/javax/swing/JList.java,v
retrieving revision 1.52
diff -u -r1.52 JList.java
--- javax/swing/JList.java 28 Apr 2006 14:47:42 -0000 1.52
+++ javax/swing/JList.java 29 Apr 2006 19:50:57 -0000
@@ -2261,7 +2261,7 @@
*
* @return A string describing the attributes of the <code>JList</code>.
*/
- public String paramString()
+ protected String paramString()
{
StringBuffer sb = new StringBuffer(super.paramString());
sb.append(",fixedCellHeight=").append(getFixedCellHeight());