[cp-patches] FYI: java/io/ObjectInputStream.java clean up

2005-08-07 Thread Jeroen Frijters
Hi, I committed the attached patch to pass or initialize causes for all exceptions and to remove some bogus code from readClassDescriptor. I also added a comment to readFields.GetField.getField that it should be rewritten, the current code is *totally* incomprehensible. (Including the anti-patter

[cp-patches] FYI: Some 1.5 Exception constructors merged back from generics branch

2005-08-07 Thread Jeroen Frijters
Hi, I merged some new 1.5 exception constructors from the generics branch to HEAD. Regards, Jeroen 2005-08-06 Jeroen Frijters <[EMAIL PROTECTED]> * java/lang/IllegalArgumentException.java, java/lang/IllegalStateException.java, java/lang/SecurityException.java,

[cp-patches] FYI: Implementing of org.omg.DynamicAny package.

2005-08-07 Thread Meskauskas Audrius
This patch contains the needed implementation. Support of DynAnys required to rewrite some other classes, but my tests indicate no regressions. Like other parts, our DynAnys are covered by modified tests from the cost.omg.org. 2005-08-03 Audrius Meskauskas <[EMAIL PROTECTED]> * gnu/CORBA/CD

[cp-patches] FYI: Fix DatagramSocket system property access

2005-08-07 Thread Mark Wielaard
Hi, We were trying to get the impl.prefix system property through System.getProperty() which is a problem when a SecurityManager is installed. This patch fixes it by using SystemProperties.getProperty() like the bug report suggest. 2005-08-07 Mark Wielaard <[EMAIL PROTECTED]> Fixes bug

[cp-patches] FYI: Condense VMNetworkInterface.getInterfaces() result

2005-08-07 Thread Mark Wielaard
Hi, This fixes a bug that Ito fixed a long time ago for kaffe. (Found in bugzilla by Andrew) 2005-08-07 Ito Kazumitsu <[EMAIL PROTECTED]> Fixes bug #22929 * libraries/javalib/java/net/NetworkInterface.java (condense): New static private method. (getNetworkInterfaces)

[cp-patches] FYI: fix various problems with X500Principal

2005-08-07 Thread Casey Marshall
I'm checking in this patch that fixes a few problems with X500Principal -- in parsing string-based representations, then writing them out again in the binary format for X.500 distinguished names. I'm sure the code is still quite bad. The crypto and security stuff in Classpath really do ne