[cp-patches] FYI: check_jni_methods.sh fixlets

2005-08-13 Thread Mark Wielaard
Hi, Our check jni methods script would try to create temporary files in the source directory which can be write protected. It would silently fail, but not report any errors about this. The following patch fixes this. 2005-08-13 Mark Wielaard [EMAIL PROTECTED] *

[cp-patches] Some cleanups for gjdoc

2005-08-13 Thread Mark Wielaard
Hi, I had the following little cleanups in my local tree for gjdoc: 2005-08-13 Mark Wielaard [EMAIL PROTECTED] * configure.ac: Add AC_CHECK_RQRD_CLASS check for java.util.regex.Pattern. * src/gnu/classpath/tools/gjdoc/AbstractTagImpl.java (toString): New method. *

Re: [cp-patches] [FYI] fix build

2005-08-13 Thread Tom Tromey
Aaron == Aaron Luchko [EMAIL PROTECTED] writes: Aaron ChangeLog Aaron * vm/reference/standard.omit: New file to omit jdwp reference Aaron classes from build. Just FYI, cvs add the file and use 'cvs diff -N' so it will show up in the patch you mail in. Tom

[cp-patches] [generics] Patch: FYI: java.util exception fixes

2005-08-13 Thread Tom Tromey
I'm checking this in on the generics branch. This fixes serialization for all the exception classes in java.util, and adds a new exception that was missing. Tom Index: ChangeLog from Tom Tromey [EMAIL PROTECTED] * java/util/UnknownFormatConversionException.java

[cp-patches] [generics] Patch: FYI: update Timer

2005-08-13 Thread Tom Tromey
I'm checking this in on the generics branch. This adds the new 1.5 methods to java.util.Timer. Tom Index: ChangeLog from Tom Tromey [EMAIL PROTECTED] * java/util/Timer.java (Timer(String)): New constructor. (Timer(String,boolean)): Likewise. (purge): New method.

[cp-patches] [generics] Patch: FYI: new class FormattableFlags

2005-08-13 Thread Tom Tromey
I'm checking this in on the generics branch. This adds the new class java.util.FormattableFlags. Tom Index: ChangeLog from Tom Tromey [EMAIL PROTECTED] * java/util/FormattableFlags.java: New file. Index: java/util/FormattableFlags.java

[cp-patches] [generics] Patch: FYI: 2 new Collections methods

2005-08-13 Thread Tom Tromey
I'm checking this in on the generics branch. This adds a couple new 1.5 methods to Collections. Tom Index: ChangeLog from Tom Tromey [EMAIL PROTECTED] * java/util/Collections.java (reverseOrder): New method. (frequency): Likewise. (ReverseComparator): No longer final.

[cp-patches] FYI: Use just one repaintTimer for all GtkComponentPeers

2005-08-13 Thread Mark Wielaard
Hi, I was seeing lots of repaint Timers running while we only need one. Since Timers are thread safe we can just instantiate one and use that for all GtkComponentPeers instead of creating one for each peer. 2005-08-13 Mark Wielaard [EMAIL PROTECTED] *