Files
Bart van Helvert a4bcded0bf [java-intentions] IDEA-304321 Fix "Create constructor" preview
GitOrigin-RevId: 3a473c492e709a280d8a06e7364a2af05babf37f
2022-10-31 13:46:49 +00:00

8 lines
155 B
Java

// "Create constructor" "true-preview"
public enum ReportType {
AGING("Aging");
ReportType(String aging) {
<selection></selection>
}
}