RFR: 8267578: Remove unnecessary preview checks
Jim Laskey
jlaskey at openjdk.java.net
Mon May 24 08:54:00 UTC 2021
On Sun, 23 May 2021 11:04:56 GMT, Guoxiong Li <gli at openjdk.org> wrote:
> Hi all,
>
> The following preview checks are unnecessary because they are standard features now.
>
> Attr.java
>
> allowReifiableTypesInInstanceof =
> Feature.REIFIABLE_TYPES_INSTANCEOF.allowedInSource(source) &&
> (!preview.isPreview(Feature.REIFIABLE_TYPES_INSTANCEOF) || preview.isEnabled());
>
>
> JavacParser.java
>
> this.allowYieldStatement = (!preview.isPreview(Feature.SWITCH_EXPRESSION) || preview.isEnabled()) &&
> Feature.SWITCH_EXPRESSION.allowedInSource(source);
>
>
> Resolve.java
>
> allowYieldStatement = (!preview.isPreview(Feature.SWITCH_EXPRESSION) || preview.isEnabled()) &&
> Feature.SWITCH_EXPRESSION.allowedInSource(source);
>
>
> It is good to remove them.
> Thanks for review.
>
> Best Regards,
> -- Guoxiong
Apologies. I misread the nature of the change.
-------------
PR: https://git.openjdk.java.net/jdk/pull/4157
More information about the compiler-dev
mailing list