mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 14:25:04 +07:00
preselect final fields on constructor generation (IDEA-78512)
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
class Test {
|
||||
private int a;
|
||||
private final int b;
|
||||
private int c;
|
||||
private final int d;
|
||||
|
||||
Test(int b, int d) {
|
||||
this.b = b;
|
||||
this.d = d;
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
class Test {
|
||||
private int a;
|
||||
private final int b;
|
||||
private int c;
|
||||
private final int d;
|
||||
}
|
||||
Reference in New Issue
Block a user