Re: RFR: 8290300: Use standard String-joining tools where applicable [v5]

2022-08-21 Thread Сергей Цыпанов
On Mon, 18 Jul 2022 18:40:51 GMT, Сергей Цыпанов wrote: >> Simplify code with `String.join()` > > Сергей Цыпанов has updated the pull request incrementally with one additional > commit since the last revision: > > 8290300: Revert erroneous changes Thanks! - PR: https://git.open

Re: RFR: 8290300: Use standard String-joining tools where applicable [v5]

2022-08-21 Thread Сергей Цыпанов
On Mon, 18 Jul 2022 18:40:51 GMT, Сергей Цыпанов wrote: >> Simplify code with `String.join()` > > Сергей Цыпанов has updated the pull request incrementally with one additional > commit since the last revision: > > 8290300: Revert erroneous changes Anyone to sponsor? - PR: https

Re: RFR: 8290300: Use standard String-joining tools where applicable [v5]

2022-08-03 Thread Daniel Fuchs
On Mon, 18 Jul 2022 18:40:51 GMT, Сергей Цыпанов wrote: >> Simplify code with `String.join()` > > Сергей Цыпанов has updated the pull request incrementally with one additional > commit since the last revision: > > 8290300: Revert erroneous changes Changes to HttpURLConnection look good to me

Re: RFR: 8290300: Use standard String-joining tools where applicable [v5]

2022-07-18 Thread Roger Riggs
On Mon, 18 Jul 2022 18:40:51 GMT, Сергей Цыпанов wrote: >> Simplify code with `String.join()` > > Сергей Цыпанов has updated the pull request incrementally with one additional > commit since the last revision: > > 8290300: Revert erroneous changes Marked as reviewed by rriggs (Reviewer). --

Re: RFR: 8290300: Use standard String-joining tools where applicable [v5]

2022-07-18 Thread Naoto Sato
On Mon, 18 Jul 2022 18:40:51 GMT, Сергей Цыпанов wrote: >> Simplify code with `String.join()` > > Сергей Цыпанов has updated the pull request incrementally with one additional > commit since the last revision: > > 8290300: Revert erroneous changes Marked as reviewed by naoto (Reviewer). ---

Re: RFR: 8290300: Use standard String-joining tools where applicable [v4]

2022-07-18 Thread Сергей Цыпанов
On Mon, 18 Jul 2022 11:31:59 GMT, Сергей Цыпанов wrote: >> Simplify code with `String.join()` > > Сергей Цыпанов has updated the pull request incrementally with one additional > commit since the last revision: > > 8290300: Remove unused import Right, my bad. I've confused arguments. The chan

Re: RFR: 8290300: Use standard String-joining tools where applicable [v5]

2022-07-18 Thread Сергей Цыпанов
> Simplify code with `String.join()` Сергей Цыпанов has updated the pull request incrementally with one additional commit since the last revision: 8290300: Revert erroneous changes - Changes: - all: https://git.openjdk.org/jdk/pull/9513/files - new: https://git.openjdk.org/jd

Re: RFR: 8290300: Use standard String-joining tools where applicable [v4]

2022-07-18 Thread Naoto Sato
On Mon, 18 Jul 2022 11:08:24 GMT, Сергей Цыпанов wrote: > For `Locale` all the call sites of `formatList()` never pass null, so the > code in `if` block is never executed. I think we can delete this unused parts > of the code in `Locale`, Are you sure about this? `pattern` is derived from `Lo

Re: RFR: 8290300: Use standard String-joining tools where applicable [v4]

2022-07-18 Thread Сергей Цыпанов
> Simplify code with `String.join()` Сергей Цыпанов has updated the pull request incrementally with one additional commit since the last revision: 8290300: Remove unused import - Changes: - all: https://git.openjdk.org/jdk/pull/9513/files - new: https://git.openjdk.org/jdk/pu

Re: RFR: 8290300: Use standard String-joining tools where applicable [v3]

2022-07-18 Thread Сергей Цыпанов
On Fri, 15 Jul 2022 12:25:07 GMT, Jim Laskey wrote: >> Сергей Цыпанов has updated the pull request incrementally with one >> additional commit since the last revision: >> >> 8290300: Remove unused piece of code in formatList() > > LGTM, however are there tests that ensure the changes are beni

Re: RFR: 8290300: Use standard String-joining tools where applicable [v3]

2022-07-18 Thread Сергей Цыпанов
> Simplify code with `String.join()` Сергей Цыпанов has updated the pull request incrementally with one additional commit since the last revision: 8290300: Remove unused piece of code in formatList() - Changes: - all: https://git.openjdk.org/jdk/pull/9513/files - new: https:/

Re: RFR: 8290300: Use standard String-joining tools where applicable [v2]

2022-07-15 Thread Naoto Sato
On Fri, 15 Jul 2022 12:40:50 GMT, Сергей Цыпанов wrote: >> Simplify code with `String.join()` > > Сергей Цыпанов has updated the pull request incrementally with two additional > commits since the last revision: > > - 8290300: Revert jops > - 8290300: Revert jops Changes to `Locale` look good

Re: RFR: 8290300: Use standard String-joining tools where applicable [v2]

2022-07-15 Thread Сергей Цыпанов
On Fri, 15 Jul 2022 12:25:07 GMT, Jim Laskey wrote: >> Сергей Цыпанов has updated the pull request incrementally with two >> additional commits since the last revision: >> >> - 8290300: Revert jops >> - 8290300: Revert jops > > LGTM, however are there tests that ensure the changes are benign?

Re: RFR: 8290300: Use standard String-joining tools where applicable

2022-07-15 Thread Сергей Цыпанов
On Fri, 15 Jul 2022 12:03:13 GMT, Сергей Цыпанов wrote: > Simplify code with `String.join()` Reverted jops - PR: https://git.openjdk.org/jdk/pull/9513

Re: RFR: 8290300: Use standard String-joining tools where applicable [v2]

2022-07-15 Thread Сергей Цыпанов
> Simplify code with `String.join()` Сергей Цыпанов has updated the pull request incrementally with two additional commits since the last revision: - 8290300: Revert jops - 8290300: Revert jops - Changes: - all: https://git.openjdk.org/jdk/pull/9513/files - new: https://git.o

Re: RFR: 8290300: Use standard String-joining tools where applicable

2022-07-15 Thread Alan Bateman
On Fri, 15 Jul 2022 12:03:13 GMT, Сергей Цыпанов wrote: > Simplify code with `String.join()` joptsimple is a 3rd party code so we probably don't want to change that. - PR: https://git.openjdk.org/jdk/pull/9513

Re: RFR: 8290300: Use standard String-joining tools where applicable

2022-07-15 Thread Jim Laskey
On Fri, 15 Jul 2022 12:03:13 GMT, Сергей Цыпанов wrote: > Simplify code with `String.join()` LGTM, however are there tests that ensure the changes are benign? - PR: https://git.openjdk.org/jdk/pull/9513

RFR: 8290300: Use standard String-joining tools where applicable

2022-07-15 Thread Сергей Цыпанов
Simplify code with `String.join()` - Commit messages: - 8290300: Fix copy-right year - 8290300: Use standard String-joining tools where applicable Changes: https://git.openjdk.org/jdk/pull/9513/files Webrev: https://webrevs.openjdk.org/?repo=jdk&pr=9513&range=00 Issue: https://b