[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 stefan at huehner.org *

[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. ---BeginMessage--- 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

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] 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

[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: *

[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: *

[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: 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: 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

[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

[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

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 stefan at huehner.org *

[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 stefan at huehner.org native/jni/java-io/java_io_VMObjectStreamClass.c,

[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 stefan at huehner.org * gnu/classpath/jdwp/event/ExceptionEvent.java, * gnu/java/awt/peer/gtk/GtkMainThread.java:

[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] 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:

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. Hmmm,

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.java, *