hg: jdk7/tl/jdk: 3 new changesets

2010-11-02 Thread alan . bateman
Changeset: 5a6c63deacf3 Author:alanb Date: 2010-11-02 10:05 + URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/5a6c63deacf3 6993126: (aio) remove AsynchronousDatagramChannel Reviewed-by: chegar ! make/java/nio/FILES_java.gmk - src/share/classes/java/nio/channels/AsynchronousData

hg: jdk7/tl/langtools: 2 new changesets

2010-11-02 Thread maurizio . cimadamore
Changeset: 20659c8c917d Author:mcimadamore Date: 2010-11-02 12:00 + URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/20659c8c917d 6996415: Override bridges causes compiler-generated code to end up with synthetic infinite loop Summary: temporarily disable fix for override b

hg: jdk7/tl/jdk: 6945529: Apply fix for CR 6921001 to platform-specific java.security configuration files

2010-11-02 Thread vincent . x . ryan
Changeset: e127cb5c2fbd Author:vinnie Date: 2010-11-02 15:04 + URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/e127cb5c2fbd 6945529: Apply fix for CR 6921001 to platform-specific java.security configuration files Reviewed-by: mullan ! src/share/lib/security/java.security-solar

hg: jdk7/tl/corba: 6996740: Yet more breakage caused by 6891766

2010-11-02 Thread alan . bateman
Changeset: 76aeef3afc04 Author:alanb Date: 2010-11-02 18:27 + URL: http://hg.openjdk.java.net/jdk7/tl/corba/rev/76aeef3afc04 6996740: Yet more breakage caused by 6891766 Summary: Restore com.sun.corba.se.simpl.io.IIOPInputStream that 6891766 nuked in error Reviewed-by: asaha !

Please review java.util.jar.pack.* exceptions

2010-11-02 Thread Kumar Srinivasan
Hi, These are simple changes to the java.util.jar.pack: * fixes JCK failures, specifically throwing unexpected exceptions * minor fixes to the ClassFormatException * added a new test to catch the JCK type failures up-front, which is bulk of the code changes. http://cr.openjdk.java.net

Re: Please review java.util.jar.pack.* exceptions

2010-11-02 Thread John Rose
On Nov 2, 2010, at 2:10 PM, Kumar Srinivasan wrote: > These are simple changes to the java.util.jar.pack: > * fixes JCK failures, specifically throwing unexpected exceptions > * minor fixes to the ClassFormatException > * added a new test to catch the JCK type failures up-front, which is >

Re: Please review java.util.jar.pack.* exceptions

2010-11-02 Thread Mike Duigou
- ClassReader.java: I think the change of the copyright date is incorrect. It should be "2001, 2005, 2010" or "2001, 2005-2010". - In PackerImpl if the exception thrown is an IOException it is not re-thrown. By not initializing inFiles this code path would have been seen as "inFiles not initial

Re: Please review java.util.jar.pack.* exceptions

2010-11-02 Thread John Rose
On Nov 2, 2010, at 3:04 PM, Mike Duigou wrote: > - ClassReader.java: I think the change of the copyright date is incorrect. It > should be "2001, 2005, 2010" or "2001, 2005-2010". Standard Oracle copyright format has just the first and last year, no ranges and no other years. -- John

Re: Please review java.util.jar.pack.* exceptions

2010-11-02 Thread David Holmes
On 3/11/2010 8:04 AM, Mike Duigou wrote: - In PackerImpl if the exception thrown is an IOException it is not re-thrown. By not initializing inFiles this code path would have been seen as "inFiles not initialized" at the inFiles.size() expression. Also a minor nit in UnpackerImpl: 91 * @