mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
Otherwise, it's hard to make it compatible with new-style unused inspection (IDEA-349083) Also: remove empty line in constructor body automatically GitOrigin-RevId: ab1cd08352d9f0168b86acc1d4b87cb89cfe7d69
9 lines
167 B
Java
9 lines
167 B
Java
// "Create field for parameter 'name'" "true-preview"
|
|
|
|
class Person {
|
|
private final String myName;
|
|
|
|
public Person(String name) {
|
|
myName = name;
|
|
}
|
|
} |