Vineflower / vineflower

Modern Java decompiler aiming to be as accurate as possible, with an emphasis on output quality. Fork of the Fernflower decompiler.
https://vineflower.org/
Apache License 2.0
1.13k stars 83 forks source link

Fix default case not always being last in switch statements #391

Closed coehlrich closed 1 month ago

coehlrich commented 1 month ago

reorders the cases so that the default case is always last because if a case pattern or null literal is used then the default case (if present) must be last to successfully compile.