openrewrite / rewrite-migrate-java

OpenRewrite recipes for migrating to newer versions of Java.
Apache License 2.0
111 stars 75 forks source link

fix: UseEnumSetOf should ignore array and varargs parameters #518

Closed mbruggmann closed 4 months ago

mbruggmann commented 4 months ago

EnumSet doesn't have the equivalent of Set.of(arr[]). For now, let's just skip those cases and bail out.

Fixes #516.

mbruggmann commented 4 months ago

Likewise, thanks @timtebeek!