hg: jdk8/tl/jdk: 2 new changesets

2013-08-22 Thread staffan . larsen
Changeset: 7b6211cd8d76 Author:egahlin Date: 2013-08-21 17:15 +0200 URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/7b6211cd8d76 6417649: -interval=0 is accepted and jconsole doesn't update window content at all Reviewed-by: alanb, jbachorik ! src/share/classes/sun/tools/jconsole/

Re: Code review request: 8012615: Realm.getRealmsList returns realms list in wrong

2013-08-22 Thread Weijun Wang
On 8/23/13 10:39 AM, Valerie (Yu-Ching) Peng wrote: 1. Line 255, "returns if keys exists" should be "returns true if key exists". 2. Line 257, "@see get" should be "@see get0"? I meant looking at the how IAE is thrown in get. Updated to * @throws IllegalArgumentException if any of the

Re: Code review request: 8012615: Realm.getRealmsList returns realms list in wrong

2013-08-22 Thread Valerie (Yu-Ching) Peng
1. Line 255, "returns if keys exists" should be "returns true if key exists". 2. Line 257, "@see get" should be "@see get0"? 3. You may want to add the following to the public getAll(String... keys) method. @throws IllegalArgumentException ... looks fine Before I looked at Realm.java, I

Re: hg: jdk8/tl/jdk: 8022228: Intermittent test failures in sun/security/ssl/javax/net/ssl/NewAPIs

2013-08-22 Thread Laxmi Narayan NIT DGP
is there are any chances of contribution for outsider of oracle and even student developers ?? * Laxmi Narayan Patel * * MCA NIT Durgapur (Pre final year) * * mob:-8345847473 * On Thu, Aug 22, 2013 at 8:16 AM, wrote: > Changeset: ec827a62070a > Author:xuele

hg: jdk8/tl/jdk: 8022721: AnnotationTypeDeadlockTest.java throws java.lang.IllegalStateException: unexpected condition

2013-08-22 Thread peter . levart
Changeset: 2281a7f79738 Author:plevart Date: 2013-08-20 14:13 +0200 URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/2281a7f79738 8022721: AnnotationTypeDeadlockTest.java throws java.lang.IllegalStateException: unexpected condition Reviewed-by: alanb, jfranck ! test/java/lang/annot

hg: jdk8/tl/jdk: 8022445: fix RMISocketFactory example to avoid using localhost

2013-08-22 Thread stuart . marks
Changeset: 7496ec8bab76 Author:smarks Date: 2013-08-22 15:54 -0700 URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/7496ec8bab76 8022445: fix RMISocketFactory example to avoid using localhost Reviewed-by: chegar, alanb ! src/share/classes/java/rmi/server/RMISocketFactory.java

hg: jdk8/tl/langtools: 8022173: Relax some warnings in doclint

2013-08-22 Thread jonathan . gibbons
Changeset: b77381d99056 Author:jjg Date: 2013-08-22 12:41 -0700 URL: http://hg.openjdk.java.net/jdk8/tl/langtools/rev/b77381d99056 8022173: Relax some warnings in doclint Reviewed-by: darcy ! src/share/classes/com/sun/tools/doclint/HtmlTag.java ! test/tools/doclint/html/ListTagsTes

hg: jdk8/tl/jdk: 8023430: Replace File.mkdirs with Files.createDirectories to get MaxPathLength.java failure details

2013-08-22 Thread dan . xu
Changeset: 8a7d9cc2f41c Author:dxu Date: 2013-08-22 11:43 -0700 URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/8a7d9cc2f41c 8023430: Replace File.mkdirs with Files.createDirectories to get MaxPathLength.java failure details Reviewed-by: alanb ! test/ProblemList.txt ! test/java/io

hg: jdk8/tl/langtools: 8020745: Suspicious MethodParameters attribute generated for local classes capturing local variables

2013-08-22 Thread eric . mccorkle
Changeset: 1ab22e60a738 Author:emc Date: 2013-08-22 12:47 -0400 URL: http://hg.openjdk.java.net/jdk8/tl/langtools/rev/1ab22e60a738 8020745: Suspicious MethodParameters attribute generated for local classes capturing local variables Summary: Corrected an error in a previous patch th

hg: jdk8/tl/jdk: 8023587: Fix lone remaining doclint issue in java.util.regex

2013-08-22 Thread joe . darcy
Changeset: b7c4094be729 Author:darcy Date: 2013-08-22 09:40 -0700 URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/b7c4094be729 8023587: Fix lone remaining doclint issue in java.util.regex Reviewed-by: jjg ! src/share/classes/java/util/regex/Pattern.java

[JDK 8]Code review request 8023557, Manually measure the performance of SSL/TLS implementation

2013-08-22 Thread Xuelei Fan
Hi, This is a new test case used to manually measure performance of SSL/TLS connections. It is useful to evaluate performance impact of JSSE update. webrev: http://cr.openjdk.java.net/~xuelei/8023557/webrev.00/ Thanks, Xuelei

hg: jdk8/tl/langtools: 8023112: javac should not use lazy constant evaluation approach for method references

2013-08-22 Thread vicente . romero
Changeset: 25aaff78d754 Author:vromero Date: 2013-08-22 13:12 +0100 URL: http://hg.openjdk.java.net/jdk8/tl/langtools/rev/25aaff78d754 8023112: javac should not use lazy constant evaluation approach for method references Reviewed-by: jjg, mcimadamore ! src/share/classes/com/sun/to

hg: jdk8/tl/langtools: 8022316: Generic throws, overriding and method reference

2013-08-22 Thread vicente . romero
Changeset: 7a4717f3ea7b Author:vromero Date: 2013-08-22 10:22 +0100 URL: http://hg.openjdk.java.net/jdk8/tl/langtools/rev/7a4717f3ea7b 8022316: Generic throws, overriding and method reference Reviewed-by: jjg, mcimadamore ! src/share/classes/com/sun/tools/javac/code/Types.java + te

Re: hg: jdk8/tl/jdk: 8022228: Intermittent test failures in sun/security/ssl/javax/net/ssl/NewAPIs

2013-08-22 Thread Xuelei Fan
On 8/22/2013 11:37 AM, Laxmi Narayan NIT DGP wrote: > is there are any chances of contribution for outsider of oracle and even > student developers ?? > Sure. Please see the following page about how to contribute: http://openjdk.java.net/contribute/ And The OpenJDK Developers' Guide: htt