apache / netbeans

Apache NetBeans
https://netbeans.apache.org/
Apache License 2.0
2.63k stars 840 forks source link

Refactor "Move Inner to Outer level" on record drops the record details #7044

Open homberghp opened 7 months ago

homberghp commented 7 months ago

Apache NetBeans version

Apache NetBeans 20

What happened

When you have an inner record like so;

package example;
import java.time.LocalDate;
public class Example {
    public record Studentje(int id, String fullName, LocalDate dob){}
}

and for some reason you want it to be an outer class in its own file, then refactor Move Inner to Outer level, then the result in the that file is

package example;
import java.time.LocalDate;
public class Studentje {
}

dropping all record details.

Language / Project Type / NetBeans Component

java editor

How to reproduce

make class as above with inner record and apply refactoring Move Inner to. The resulting class is no longer a record, the record component parameters including parenthesis are dropped, but the import (LocalDate) is handed over, but is useless because of the stripping.

Did this work correctly in an earlier version?

No / Don't know

Operating System

ubuntu 22.04, Windows 11

JDK

java 21, Java 17 at least

Apache NetBeans packaging

Apache NetBeans binary zip

Anything else

occurs always.

Are you willing to submit a pull request?

No