Fwd: Project Wakefield announcement and welcome

2021-09-01 Thread Philip Race
FYI Forwarded Message Subject:Project Wakefield announcement and welcome Date: Wed, 1 Sep 2021 14:59:30 -0700 From: Philip Race To: wakefield-...@openjdk.java.net Hi all, The project has been recorded in the OpenJDK census : https://openjdk.java.net/census

Re: RFR: 8271603: Unnecessary Vector usage in java.desktop [v6]

2021-09-01 Thread Andrey Turbanov
> Usage of thread-safe collection `Vector` is unnecessary. It's recommended to > use `ArrayList` if a thread-safe implementation is not needed. In > post-BiasedLocking times, this is gets worse, as every access is synchronized. > I checked only places where `Vector` was used as local variable. A

Re: RFR: 8271603: Unnecessary Vector usage in java.desktop [v5]

2021-09-01 Thread Andrey Turbanov
> Usage of thread-safe collection `Vector` is unnecessary. It's recommended to > use `ArrayList` if a thread-safe implementation is not needed. In > post-BiasedLocking times, this is gets worse, as every access is synchronized. > I checked only places where `Vector` was used as local variable. A

Re: RFR: 8271603: Unnecessary Vector usage in java.desktop [v4]

2021-09-01 Thread Andrey Turbanov
On Fri, 27 Aug 2021 18:28:58 GMT, Sergey Bylokhov wrote: >> Can you please elaborate? >> As I can see if size of array is exactly the same as size of >> vector/arraylist, implementations are similar - they just call >> System.arraycopy >> ![изображение](https://user-images.githubusercontent.com

Re: RFR: 8273168: Remove superfluous use of boxing in java.desktop [v2]

2021-09-01 Thread Andrey Turbanov
> parseInt/parseLong/parseShort/parseByte/parseFloat should be preferred, as > they return primitives. While valueOf returns boxed object. Andrey Turbanov has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brough