Files
Mikhail Pyltsin 0a7c7800b7 [java-intention] IDEA-365124 don't propose BindFieldsFromParameters when there is chain constructors
GitOrigin-RevId: 495ed3f77ff6bdd2f57deac303359cef25aa2d8e
2024-12-23 18:12:33 +00:00

15 lines
224 B
Java

// "Bind constructor parameters to fields" "false"
class Bar {
private int myi1;
private int myi2;
Bar(int <caret>i1, int i2, String i3) {
this();
}
Bar(){
myi1 = 1;
myi2 = 1;
}
}