[cp-patches] Re: FYI: java.util.Locale - fix broken serialization and equals()

2006-08-12 Thread Sven de Marothy
Now I get to share in the embarassment, I'd missed the strings are supposed to be interned. 2006-08-13 Sven de Marothy <[EMAIL PROTECTED]> * java/util/Locale.java (hashcodeCache): New field. (hashCode): use the above field instead of the serialized one (writeObje

[cp-patches] FYI: JTabbedPane

2006-08-12 Thread Roman Kennke
Another fixlet that helps with jircii. 2006-08-13 Roman Kennke <[EMAIL PROTECTED]> * javax/swing/JTabbedPane.java (JTabbedPane): Call setModel() here and let this install the change listener correctly. (setModel): Correctly uninstall and reinstall ChangeListener

[cp-patches] FYI: fix for PR Classpath/23952

2006-08-12 Thread Raif S. Naffah
hello all, the attached patch --already committed-- fixes the above PR by having the cache of previously resolved resource bundles as an LRU, of CACHE_SIZE elements, organized by access. 2006-08-13 Raif S. Naffah <[EMAIL PROTECTED]> PR Classpath/23952 * java/util/ResourceBun

[cp-patches] FYI: JMenu fix

2006-08-12 Thread Roman Kennke
This adds support for firing menu events in JMenu. This makes jircii really usable now. Get away with XChat and use jIRCii with Classpath now! ;-) 2006-08-13 Roman Kennke <[EMAIL PROTECTED]> * javax/swing/JMenu.java (MenuChangeListener): New inner class, helps firing menu eve

Re: [cp-patches] FYI: java.util.Locale - fix broken serialization and equals()

2006-08-12 Thread Mark Wielaard
On Sun, 2006-08-13 at 02:21 +0200, Sven de Marothy wrote: > 2006-08-13 Sven de Marothy <[EMAIL PROTECTED]> > > * java/util/Locale.java > (hashcode): Is a serialized field, not transient. > (equals): Should NOT compare strings by reference. > (readObject/writeObject): Use

[cp-patches] FYI: fix for PR Classpath/27372

2006-08-12 Thread Raif S. Naffah
hello all, the attached patch --already committed-- fixes the above PR and some other problems in some of the BigInteger constructor highlighted by recently added Mauve tests. 2006-08-13 Raif S. Naffah <[EMAIL PROTECTED]> PR Classpath/27372 * java/math/BigInteger.java: Update

[cp-patches] FYI: java.util.Locale - fix broken serialization and equals()

2006-08-12 Thread Sven de Marothy
This is a major embarassment. 2006-08-13 Sven de Marothy <[EMAIL PROTECTED]> * java/util/Locale.java (hashcode): Is a serialized field, not transient. (equals): Should NOT compare strings by reference. (readObject/writeObject): Use the default methods and handle

[cp-patches] FYI: several Swing (styled) text fixes

2006-08-12 Thread Roman Kennke
Here come a couple of fixes for the (styled) text rendering in Swing, which should greatly improve stability for styled text using apps like BeanShell. Next thing I'm working on right now is CSS processing and fixing up the HTML rendering to use this, and finish up HTML in general. 2006-08-1

[cp-patches] Re: FYI: PR 28580 - HTTP fixes...

2006-08-12 Thread David Daney
Tom Tromey wrote: "David" == David Daney <[EMAIL PROTECTED]> writes: David> Do we want to bring this into libgcj before this would be David> imported also? It is fine by me if you want to do this. However, if we're going to import 0.92 it might be friendlier to wait for that to ha

Re: [cp-patches] RFC: merge ssl-nio-branch into generics-branch

2006-08-12 Thread Tom Tromey
> "Casey" == Casey Marshall <[EMAIL PROTECTED]> writes: Casey> The ssl-nio work is complete enough to the point where it can be merged Casey> into the generics branch. Now that 0.92 has been released, this is a Casey> good time to do that merge. I've accomplished three of the four goals I Case