Re: [cp-patches] FYI: javax.tools stuff

2008-01-09 Thread Roman Kennke
Hi, Am Mittwoch, den 09.01.2008, 23:36 +0100 schrieb Michael Koch: > On Wed, Jan 09, 2008 at 11:13:00PM +0100, Roman Kennke wrote: > > I'm beginning the implementation of javax.tools with two interfaces. > > > > 2006-01-09 Roman Kennke <[EMAIL PROTECTED]> > > > > * javax/tools/Diagnostic.j

Re: [cp-patches] FYI: javax.tools stuff

2008-01-09 Thread Michael Koch
On Wed, Jan 09, 2008 at 11:13:00PM +0100, Roman Kennke wrote: > I'm beginning the implementation of javax.tools with two interfaces. > > 2006-01-09 Roman Kennke <[EMAIL PROTECTED]> > > * javax/tools/Diagnostic.java, > * javax/tools/DiagnosticListener.java: > New interfaces. H

[cp-patches] FYI: javax.tools stuff

2008-01-09 Thread Roman Kennke
I'm beginning the implementation of javax.tools with two interfaces. 2006-01-09 Roman Kennke <[EMAIL PROTECTED]> * javax/tools/Diagnostic.java, * javax/tools/DiagnosticListener.java: New interfaces. /Roman -- http://kennke.org/blog/ Index: gnu/java/awt/peer/x/XWindowP

[cp-patches] FYI: FontMetrics for X Fonts

2008-01-09 Thread Roman Kennke
This re-enables font metrics for X Fonts. 2006-01-09 Roman Kennke <[EMAIL PROTECTED]> * gnu/java/awt/peer/x/XWindowPeer.java (getFontMetrics): Re-enable that for X fonts. /Roman -- http://kennke.org/blog/ Index: gnu/java/awt/peer/x/XWindowPeer.java ===

[cp-patches] Cleanup: const correctnes in native code

2008-01-09 Thread Stefan Huehner
Remove some casts which discard the const from strings when not needed. Found by compiling with -Wwrite-strings and -Wcast-qual 2008-01-09 Stefan Huehner native/jni/java-io/java_io_VMObjectStreamClass.c, native/jni/java-lang/java_lang_VMDouble.

[cp-patches] Cleanup: reduce temporary object creation

2008-01-09 Thread Stefan Huehner
Patch minimizes the number of temporary objects which are created and disposed of at the same time 2008-01-09 Stefan Huehner * gnu/classpath/jdwp/event/ExceptionEvent.java, * gnu/java/awt/peer/gtk/GtkMainThread.java: use Boolean.TRUE|F

Re: [cp-patches] Cleanup: remove unused casts

2008-01-09 Thread Andrew John Hughes
On 09/01/2008, Stefan Huehner <[EMAIL PROTECTED]> wrote: > Hi, > > remove a lot unused type casts. Some of these seem to come from > a previous cleanup introducing typed containers (collections). > > Please comment/commit. > > Regards, > Stefan > > 2008-01-09 Stefan Huehner > > * examples

[cp-patches] FYI: PR34579 fix revision

2008-01-09 Thread Andrew John Hughes
- Forwarded message from - To: classpath-patches@gnu.org Subject: FYI: PR34579 fix revision We should delete the Colour.java file generated by the 1.5 test. make distclean and builder are choking on this at present. We avoided it previously by piggybacking configure's standard deleting

[cp-patches] FYI: Support 1.5 test that doesn't rely on a 1.5 class library

2008-01-09 Thread Andrew John Hughes
- Forwarded message from - To: classpath-patches@gnu.org Subject: FYI: Support 1.5 test that doesn't rely on a 1.5 class library This patch alters the 1.5 test in configure so that it doesn't rely on the class library using generics (it previously tested for a java.util.List, now it just

[cp-patches] FYI: Moving to 2008

2008-01-09 Thread Andrew John Hughes
- Forwarded message from - To: classpath-patches@gnu.org Subject: FYI: Moving to 2008 Just moving our ChangeLog to contain 2008 additions. I'm not posting the patch as it's quite uninteresting, but you can have it on request if you so desire... 2008-01-01 Andrew John Hughes <[EMAIL PR

[cp-patches] FYI: Remote JMX (Patch #01)

2008-01-09 Thread Andrew John Hughes
- Forwarded message from - To: classpath-patches@gnu.org Subject: FYI: Remote JMX (Patch #01) This is the first piece of code to implement the JMX Remote API. It just starts the addition of a couple of the RMI interfaces. ChangeLog: 2007-12-31 Andrew John Hughes <[EMAIL PROTECTED]>

[cp-patches] FYI: Fix for PR34582

2008-01-09 Thread Andrew John Hughes
- Forwarded message from - To: classpath-patches@gnu.org Subject: FYI: Fix for PR34582 This fixes the bug shown in PR34582 where the SSL RMI client socket factory can not be initialized due to a null pointer exception. Changelog: 2007-12-31 Andrew John Hughes <[EMAIL PROTECTED]>

[cp-patches] FYI: Fix for PR34580

2008-01-09 Thread Andrew John Hughes
- Forwarded message from - To: classpath-patches@gnu.org Subject: FYI: Fix for PR34580 This fixes PR34580 by correcting the access modifier on java.awt.Desktop.isDesktopSupported(). Changelog: 2007-12-25 Andrew John Hughes <[EMAIL PROTECTED]> PR classpath/34580: * ja

[cp-patches] FYI: Fix for PR34577

2008-01-09 Thread Andrew John Hughes
- Forwarded message from - To: classpath-patches@gnu.org Subject: FYI: Fix for PR34577 This allows the root pane of a JFrame to be changed by a subclass, fixing PR34577. Changelog: 2007-12-25 Andrew John Hughes <[EMAIL PROTECTED]> PR classpath/34577: * javax/swing/JF

[cp-patches] FYI: Fix for PR34576

2008-01-09 Thread Andrew John Hughes
- Forwarded message from - To: classpath-patches@gnu.org Subject: FYI: Fix for PR34576 This fixes a bug found when trying to run JConsole. The isAncestorOf() method of java.awt.Container should not return true for the container itself. ChangeLog: 2007-12-25 Andrew John Hughes <[EMAIL

[cp-patches] FYI: RuleBasedCollator fixlet

2008-01-09 Thread Roman Kennke
This fixed RuleBasedCollator.getCollationElementIterator(CharacterIterator) to simply return a CollationElementIterator for it. This means to tweak the latter class to work with CharacterIterator instead of String. This is the last missing jdk13 method according to JAPI. 2006-01-09 Roman Kennke

Re: [cp-patches] [PATCH] libjava: java.net.URI.relativize method results inconsistent with other Java VMs

2008-01-09 Thread Robert Schuster
Hi, > The second change involved removing a leading '/' from the returned > relative path to make it consistent with results from other Java VMs. > > This patch corrects two issues found in URI.relativize() method in > libjava/classpath/java/net/URI.java. It applies from gcc 4.1.2 through latest

[cp-patches] [PATCH] libjava: java.net.URI.relativize method results inconsistent with other Java VMs

2008-01-09 Thread Andrew Haley
Forwarding to Classpath list for approval. Andrew. --- Begin Message --- Howdy, The full details about the two problems found in the libjava java.net.URI.relativize method are described in the following bug http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34369 along with a provided java based test

[cp-patches] Cleanup: remove unused casts

2008-01-09 Thread Stefan Huehner
Hi, remove a lot unused type casts. Some of these seem to come from a previous cleanup introducing typed containers (collections). Please comment/commit. Regards, Stefan 2008-01-09 Stefan Huehner * examples/gnu/classpath/examples/java2d/J2dBenchmark