Re: RFR: 8304443: bootcycle builds fail after JDK-8015831

2023-03-18 Thread Vicente Romero
On Sat, 18 Mar 2023 17:46:00 GMT, Archie L. Cobbs wrote: > The fix for JDK-8015831, which added the new `this-escape` lint warning, > caused the build of the `bootcycle-images` make target to fail. > > This commit adds the additional `@SuppressWarnings("this-escape")` > annotations needed to

Re: RFR: 8304443: bootcycle builds fail after JDK-8015831

2023-03-18 Thread Vicente Romero
On Sat, 18 Mar 2023 17:46:00 GMT, Archie L. Cobbs wrote: > The fix for JDK-8015831, which added the new `this-escape` lint warning, > caused the build of the `bootcycle-images` make target to fail. > > This commit adds the additional `@SuppressWarnings("this-escape")` > annotations needed to

RFR: 8304443: bootcycle builds fail after JDK-8015831

2023-03-18 Thread Archie L . Cobbs
The fix for JDK-8015831, which added the new `this-escape` lint warning, caused the build of the `bootcycle-images` make target to fail. This commit adds the additional `@SuppressWarnings("this-escape")` annotations needed to fix it. - Commit messages: - Add