Example:
class Person {
Person(String fullName) {}
}
class Child extends Person {
Child(String name) { super(name); }
}
After the quick-fix is applied:
class Person {
Person(String fullName) {}
}
class Child extends Person {
Child(String fullName) { super(fullName); }
}
Use the options to indicate whether to ignore overridden parameter names that are only a single character long or come from a library method. Both can be useful if you do not wish to be bound by dubious naming conventions used in libraries.