Integrated: 8299497: Usage of constructors of primitive wrapper classes should be avoided in java.desktop API docs

2023-01-23 Thread Tingjun Yuan
On Sat, 21 Jan 2023 02:55:29 GMT, Tingjun Yuan wrote: > API docs of `java.awt.image.renderable.ParameterBlock` and > `java.awt.font.LineBreakMeasurer` used deprecated constructors of > `java.lang.Short` and `java.lang.Float`. > > Replacing by `valueOf` factory methods. This p

Re: RFR: 8299497: Usage of constructors of primitive wrapper classes should be avoided in java.desktop API docs

2023-01-22 Thread Tingjun Yuan
On Sun, 22 Jan 2023 16:25:29 GMT, Sergey Bylokhov wrote: > Please configure the tests in your repo: > > > Testing is not configured > > In order to run pre-submit tests, the [source > > repository](https://github.com/yuantj/jdk-pr/actions) must be properly > > configured to allow test

RFR: 8299497: Usage of constructors of primitive wrapper classes should be avoided in java.desktop API docs

2023-01-20 Thread Tingjun Yuan
API docs of `java.awt.image.renderable.ParameterBlock` and `java.awt.font.LineBreakMeasurer` used deprecated constructors of `java.lang.Short` and `java.lang.Float`. Replacing by `valueOf` factory methods. - Commit messages: - Update LineBreakMeasurer.java - Update