PR to new language features from project amber
Thiago Milczarek Sayão
thiago.sayao at gmail.com
Sat Apr 22 14:13:48 UTC 2023
Sure, I meant something like:
if (owner != null && owner instanceof WindowStage) {
((WindowStage) owner).setEnabled(true);
}
To:
if (owner instanceof WindowStage windowStage) {
windowStage.setEnabled(true);
}
Em sáb., 22 de abr. de 2023 às 11:09, Kevin Rushforth <
kevin.rushforth at oracle.com> escreveu:
> The minimum JDK version is 17, so JavaFX cannot use any features that
> are only available in a later JDK. Further, we cannot use any preview
> features.
>
> -- Kevin
>
>
> On 4/22/2023 6:59 AM, Thiago Milczarek Sayão wrote:
> > Hi,
> >
> > Can I submit PR for pattern matching or enhanced switches?
> >
> > I was thinking about creating an umbrella project like "Adopt new
> > language features from project amber" and submit "per module" and "per
> > feature" PRs.
> >
> > -- Cheers
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mail.openjdk.org/pipermail/openjfx-dev/attachments/20230422/65bbb560/attachment.htm>
More information about the openjfx-dev
mailing list