[cp-patches] FYI: RMI class loading patch

2006-08-17 Thread Jeroen Frijters
Hi, I committed my RMI class loading patch. Regards, Jeroen 2006-08-17 Jeroen Frijters [EMAIL PROTECTED] * gnu/java/rmi/server/RMIClassLoaderImpl.java (loadClass): Rewritten to use getClassLoader. (loadProxyClass): Implemented. (getClassLoader): Fixed support

[cp-patches] FYI: DefaultButtonModel - expression simplification

2006-08-17 Thread Robert Schuster
Hi, this small patch simplifies an expression. ChangeLog: 2006-08-17 Robert Schuster [EMAIL PROTECTED] * javax/swing/DefaultButtonModel.java: (setRollover): Simplified statement. cya Robert Index: javax/swing/DefaultButtonModel.java

Re: [cp-patches] FYI: Vector fixlet

2006-08-17 Thread Roman Kennke
Hi Paul, Probably a dodgy test but I think this commit: On Tue, 2006-08-15 at 11:44 +0200, Roman Kennke wrote: 2006-08-15 Roman Kennke [EMAIL PROTECTED] * java/util/Vector.java (removeAll): Don't explicitly null-check here. The RI allows null arguments when Vector

[cp-patches] FYI: java.util.Calendar - some API doc additions

2006-08-17 Thread David Gilbert
This patch (committed) adds some details to the API docs regarding null arguments for a few methods that I happened to be looking at today: 2006-08-17 David Gilbert [EMAIL PROTECTED] * java/util/Calendar.java: API doc additions. Regards, Dave Index: java/util/Calendar.java

[cp-patches] FYI: SwingUtilities.layoutCompoundLabel() fixes

2006-08-17 Thread Roman Kennke
I fixed the method SwingUtilities.layoutCompoundLabel() so that it passes the Intel and Mauve testsuite completely (except for some mauve tests that also fail on the JDK). Also, I have taken care to make it as efficient as possible, because that method is used in layouting and painting of a

[cp-patches] FYI: RepaintManager cleanup

2006-08-17 Thread Roman Kennke
This is a cleanup. I disabled some parts of RepaintManager some time ago because I suspected that it doesn't improve painting performance, and now I rip these parts out. This also means some slight performance improvement, because the rectangle translation is done on the fly. 2006-08-17

[cp-patches] FYI: JComponent fixlet

2006-08-17 Thread Roman Kennke
This makes JComponent.scrollRectToVisible() behave more elegantly when there are non-JComponents in the tree. This can be important, because there actually are some of these even in Swing (like the CellRendererPane). 2006-08-17 Roman Kennke [EMAIL PROTECTED] *

Re: [cp-patches] FYI: Vector fixlet

2006-08-17 Thread Tom Tromey
Roman == Roman Kennke [EMAIL PROTECTED] writes: Roman Yes, but the JDK also fails this test, so I didn't worry about it. If it is a bogus test, please remove it. Thanks. Tom

[cp-patches] Re: FYI: Vector fixlet

2006-08-17 Thread Stuart Ballard
Tom Tromey tromey at redhat.com writes: If it is a bogus test, please remove it. Thanks. Wouldn't it be better to modify the test to test that the outcome *is* whatever the RI gives in whatever the situation is? Stuart.

Re: [cp-patches] Re: FYI: Vector fixlet

2006-08-17 Thread Tom Tromey
If it is a bogus test, please remove it. Thanks. Stuart Wouldn't it be better to modify the test to test that the Stuart outcome *is* whatever the RI gives in whatever the situation Stuart is? Yeah :-) Tom

[cp-patches] FYI: FileSystemView BasicFileChooserUI fix

2006-08-17 Thread Jeroen Frijters
Hi, I committed the attached patch. -Object path = filechooser.getCurrentDirectory(); +File path = filechooser.getCurrentDirectory(); if (path != null) - parentPath = path.toString().substring(path.toString().lastIndexOf(/)); + parentPath =

[cp-patches] FYI: transform plugin's gappletviewer reference

2006-08-17 Thread Thomas Fitzsimmons
Hi, I committed this patch to fix PR 28537. Tom 2006-08-17 Thomas Fitzsimmons [EMAIL PROTECTED] PR classpath/28537 * native/plugin/Makefile.am (libgcjwebplugin_la_CXXFLAGS): Transform gappletviewer name using program_transform_name. Index: native/plugin/Makefile.am