Re: RFR: 8277459: Add jwebserver tool [v6]

2021-11-30 Thread Magnus Ihse Bursie
On Mon, 29 Nov 2021 17:00:24 GMT, Julia Boes wrote: >> This change introduces jwebserver, a dedicated JDK tool for the Simple Web >> Server. >> >> A description is provided in a follow-up comment. > > Julia Boes has updated the pull request with a new target base due to a merge > or a rebase.

CFV: New Networking Group Member: Aleksei Efimov

2021-11-30 Thread Daniel Fuchs
I hereby nominate Aleksei Efimov (aefimov) [1] to Membership in the Networking Group. Aleksei is a Committer in the JDK project, and has been actively participating in the evolution and maintenance of the networking libraries for several years. Aleksei is the principal contributor and owner o

Re: CFV: New Networking Group Member: Aleksei Efimov

2021-11-30 Thread Daniel Fuchs
Vote: yes On 30/11/2021 14:26, Daniel Fuchs wrote: I hereby nominate Aleksei Efimov (aefimov) [1] to Membership in the Networking Group.

Re: CFV: New Networking Group Member: Aleksei Efimov

2021-11-30 Thread Alan Bateman
Vote: yes

Re: RFR: 8277868: Use Comparable.compare() instead of surrogate code [v2]

2021-11-30 Thread Roger Riggs
On Mon, 29 Nov 2021 08:18:47 GMT, Сергей Цыпанов wrote: >> Instead of something like >> >> long x; >> long y; >> return (x < y) ? -1 : ((x == y) ? 0 : 1); >> >> we can use `return Long.compare(x, y);` >> >> All replacements are done with IDE. > > Сергей Цыпанов has updated the pull request inc