Re: RFR: JDK-8233636: Make jpackage an incubator and remove tool provider implementation

2019-11-07 Thread Mandy Chung
On 11/7/19 1:45 PM, Andy Herrick wrote: Please review the jpackage fix for bug [1] at [2]. This is a fix for the JDK-8200758-branch branch of the open sandbox repository (jpackage). This changes the module name, and base package name from jdk.jpackage to jdk.incubator.jpackage. This

Re: RFR: JDK-8233636: Make jpackage an incubator and remove tool provider implementation

2019-11-07 Thread Alexander Matveev
Hi Andy, Agree with Alexey comments. Otherwise looks good. Thanks, Alexander On 11/7/2019 2:44 PM, Andy Herrick wrote: On 11/7/2019 5:38 PM, Alexey Semenyuk wrote: I guess the link for the review is https://cr.openjdk.java.net/~herrick/8233636/webrev.02 sry: yes webrev is

RFR: 8231863: Crash if classpath is read from @argument file and the main gets option argument

2019-11-07 Thread Henry Jen
Hi, Please review the webrev[1], contributed by Mat Carter. You can find the bug details at JBS[2]. I have reviewed and tested the fix, I still need an official review before I can push this. Cheers, Henry [1] http://cr.openjdk.java.net/~henryjen/jdk/8231863.0/webrev/ [2]

Re: RFR: JDK-8233636: Make jpackage an incubator and remove tool provider implementation

2019-11-07 Thread Andy Herrick
On 11/7/2019 5:38 PM, Alexey Semenyuk wrote: I guess the link for the review is https://cr.openjdk.java.net/~herrick/8233636/webrev.02 sry: yes webrev is http://cr.openjdk.java.net/~herrick/8233636/webrev.02

Re: RFR: JDK-8233636: Make jpackage an incubator and remove tool provider implementation

2019-11-07 Thread Alexey Semenyuk
I guess the link for the review is https://cr.openjdk.java.net/~herrick/8233636/webrev.02 http://cr.openjdk.java.net/~herrick/8233636/webrev.02/test/jdk/tools/jpackage/helpers/jdk/jpackage/test/JavaTool.java.sdiff.html:50 I'd suggest to replace --- if (name.equals("jpackage")) --- with more

Re: RFR: JDK-8233117 Escape Sequences For Line Continuation and White Space (Preview)

2019-11-07 Thread Jim Laskey
Yep. :-) Too much juggling. Thank you. > On Nov 7, 2019, at 5:23 PM, Brent Christian > wrote: > > Should the new escapes be added to the table in the String.translateEscapes() > JavaDoc? > > -Brent > > On 11/7/19 6:22 AM, Jim Laskey wrote: >> Please review the following code changes.

Re: JDK 14 RFR of JDK-8233452: java.math.BigDecimal.sqrt() with RoundingMode.FLOOR results in incorrect result

2019-11-07 Thread Brian Burkhalter
Hi Joe, > On Nov 5, 2019, at 6:04 PM, Joe Darcy wrote: > > Please review the changes to fix > > JDK-8233452: java.math.BigDecimal.sqrt() with RoundingMode.FLOOR results > in incorrect result > http://cr.openjdk.java.net/~darcy/8233452.0/ >

RFR: JDK-8233636: Make jpackage an incubator and remove tool provider implementation

2019-11-07 Thread Andy Herrick
Please review the jpackage fix for bug [1] at [2]. This is a fix for the JDK-8200758-branch branch of the open sandbox repository (jpackage). This changes the module name, and base package name from jdk.jpackage to jdk.incubator.jpackage. This removes the "provides" statement in

Re: RFR: JDK-8233117 Escape Sequences For Line Continuation and White Space (Preview)

2019-11-07 Thread Brent Christian
Should the new escapes be added to the table in the String.translateEscapes() JavaDoc? -Brent On 11/7/19 6:22 AM, Jim Laskey wrote: Please review the following code changes. Provides for the introduction of two new escape sequences \ and \s. \ allows developers to express unwieldy string

Re: [14] RFR: 8232871: Host Locale Provider on Mac does not return translated values of Japanese calendar

2019-11-07 Thread Brent Christian
Looks good. -B On 11/6/19 6:11 PM, naoto.s...@oracle.com wrote: Here is the updated webrev: https://cr.openjdk.java.net/~naoto/8232871/webrev.01/

Re: RFR [14/java.xml] 8233686: XML transformer uses excessive amount of memory

2019-11-07 Thread Lance Andersen
Looks OK Joe. > On Nov 7, 2019, at 2:01 PM, Joe Wang wrote: > > Please review a quick fix that reduces unnecessary object allocations. > > JBS: https://bugs.openjdk.java.net/browse/JDK-8233686 > webrev: http://cr.openjdk.java.net/~joehw/jdk14/8233686/webrev/ > > Thanks, > Joe >

RFR [14/java.xml] 8233686: XML transformer uses excessive amount of memory

2019-11-07 Thread Joe Wang
Please review a quick fix that reduces unnecessary object allocations. JBS: https://bugs.openjdk.java.net/browse/JDK-8233686 webrev: http://cr.openjdk.java.net/~joehw/jdk14/8233686/webrev/ Thanks, Joe

Re: RFR: JDK-8232684: Make switch expressions final

2019-11-07 Thread Vladimir Kozlov
HotSpot tests changes (using Thread.yield()) look good. Thanks, Vladimir On 11/5/19 1:50 AM, Jan Lahoda wrote: I've missed updates to some hotspot and jdk tests in the first patch. The problem are unqualified invocations of Thread.yield(), which are no longer allowed (from the spec: JLS 3.9

RFR: JDK-8233117 Escape Sequences For Line Continuation and White Space (Preview)

2019-11-07 Thread Jim Laskey
Please review the following code changes. Provides for the introduction of two new escape sequences \ and \s. \ allows developers to express unwieldy string literals in a text block as a cluster of short single line segments. The second is to allow developers to express ASCII space, much like